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

ca.pjer.parseclient.Perspective Maven / Gradle / Ivy

package ca.pjer.parseclient;

import java.util.List;
import java.util.concurrent.Future;

public interface Perspective {

	Batch beginBatch();

	List endBatch(Batch batch);

	Future> endBatchAsync(Batch batch);

	Operation> endBatchOperation(Batch batch);

	 ObjectResources withObjects(Class type);

	ObjectResources withObjects(String className);

	 ObjectResources withObjects(Class type, String className);

	UserResources withUsers();

	 UserResources withUsers(Class type);

	SessionResources withSessions();

	 SessionResources withSessions(Class type);

	RoleResources withRoles();

	 RoleResources withRoles(Class type);

	FileResources withFiles();

	CloudCode withCloudCode();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy