blob: 3ad493ab06d12bcfeba3681a24ce4023da5984de [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.internal;
import java.util.List;
public class Service {
public static native VersionedPermissions GetPermissions();
public static native void SetPermissions(VersionedPermissions permissions) throws VError;
public static native List<Id> ListDatabases() throws Error;
public static native void Login(String oAuthProvider, String oAuthToken) throws VError;
}