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

as.leap.code.LASClassManager Maven / Gradle / Ivy

The newest version!
package as.leap.code;


import as.leap.las.sdk.FindMsg;
import as.leap.las.sdk.LASQuery;
import as.leap.las.sdk.LASUpdate;
import as.leap.las.sdk.UpdateMsg;

public interface LASClassManager {

  SaveResult create(T object) throws LASException;

  FindMsg find(LASQuery query) throws LASException;

  FindMsg find(LASQuery query, boolean count) throws LASException;

  T findById(String id) throws LASException;

  UpdateMsg update(String id, LASUpdate update) throws LASException;

  DeleteResult delete(String id) throws LASException;

  DeleteResult delete(String[] ids) throws LASException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy