Operation |
Details |
public create( String model, String id, TreeFragment values):void |
Sequential Notes: | Inserts a map of values into the database. @link Map} of {@link List}s of {@link LocalizedString}s containing the information about the entity. It is a list because it is possible that there are more than one objects to a given subject/predicate combination. E.g. there may be multiple alternative titles to a journal. | |
public createUniqueIdentifier( String model):String |
Sequential |
public delete( String model, String id):void |
Sequential Notes: | Deletes all entries from the database that fit the given model and id. | |
public details( String model, String id):TreeFragment |
Sequential Notes: | Retrieves details about an entity identified by the given id. @return A {@link Map} of {@link List}s of {@link LocalizedString}s containing the information about the entity. It is a list because it is possible that there are more than one objects to a given subject/predicate combination. E.g. there may be multiple alternative titles to a journal. | |
public details( String model, String id, String lang):TreeFragment |
Sequential Notes: | Retrieves details about an entity identified by the given id and returns the results in the given language. @return A {@link Map} of {@link List}s of {@link LocalizedString}s containing the information about the entity. It is a list because it is possible that there are more than one objects to a given subject/predicate combination. E.g. there may be multiple alternative titles to a journal. | |
public getAllIds( String model):List |
Sequential |
public query( String model, String query):List |
Sequential Notes: | Retrieve a list of entities matching the given search query. @return A {@link List} of key-value pairs containing the matching results. | |
public query( String model, String query, String lang):List |
Sequential Notes: | Retrieve a list of objects matching the given search query and the given language. @return A {@link List} of key-value pairs containing the matching results. | |
public query( String model, String query, String lang, int limit):List |
Sequential Notes: | Retrieve a list of objects matching the given search query and the given language. @return A {@link List} of key-value pairs containing the matching results. | |
public release():void |
Sequential |