All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.visallo.web.clientapi.UserApiExt Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package org.visallo.web.clientapi;

import org.visallo.web.clientapi.codegen.ApiException;
import org.visallo.web.clientapi.model.ClientApiUsers;
import org.visallo.web.clientapi.codegen.UserApi;

public class UserApiExt extends UserApi {
    public ClientApiUsers getAll() throws ApiException {
        return getAll(null, null);
    }

    public ClientApiUsers getAll(String query) throws ApiException {
        return getAll(query, null);
    }

    public ClientApiUsers getAllForWorkspace(String workspaceId) throws ApiException {
        return getAll(null, workspaceId);
    }

    public ClientApiUsers getAllForWorkspace(String query, String workspaceId) throws ApiException {
        return getAll(query, workspaceId);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy