blob: ba3e75cc2bd3d63f770ccd4a767655529ab107c3 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncbase;
import java.util.Map;
enum AccessLevel {
Read,
ReadWrite,
ReadWriteAdmin
}
public class AccessList {
public Map<String, AccessLevel> users;
}