Package com.soffid.iam.service.ejb
Interface CustomObjectService
-
public interface CustomObjectService
EJB CustomObjectService
-
-
Method Summary
-
-
-
Method Detail
-
findCustomObjectByJsonQueryAsync
AsyncList<CustomObject> findCustomObjectByJsonQueryAsync(String objectType, String query) throws InternalErrorException
- Throws:
InternalErrorException
-
findCustomObjectByTextAndFilterAsync
AsyncList<CustomObject> findCustomObjectByTextAndFilterAsync(String objectType, String text, String filter) throws InternalErrorException
- Throws:
InternalErrorException
-
findCustomObjectByTextAndJsonQueryAsync
AsyncList<CustomObject> findCustomObjectByTextAndJsonQueryAsync(String text, String filter) throws InternalErrorException
- Throws:
InternalErrorException
-
findCustomObjectByTextAndJsonQueryAsync
AsyncList<CustomObject> findCustomObjectByTextAndJsonQueryAsync(String objectType, String text, String filter) throws InternalErrorException
- Throws:
InternalErrorException
-
findCustomObjectByTextAsync
AsyncList<CustomObject> findCustomObjectByTextAsync(String objectType, String query) throws InternalErrorException
- Throws:
InternalErrorException
-
createCustomObject
CustomObject createCustomObject(CustomObject obj) throws InternalErrorException
- Throws:
InternalErrorException
-
findCustomObjectByTypeAndName
CustomObject findCustomObjectByTypeAndName(String objectType, String name) throws InternalErrorException
- Throws:
InternalErrorException
-
updateCustomObject
CustomObject updateCustomObject(CustomObject obj) throws InternalErrorException
- Throws:
InternalErrorException
-
findCustomObjectByTextAndJsonQuery
PagedResult<CustomObject> findCustomObjectByTextAndJsonQuery(String text, String filter, Integer start, Integer end) throws InternalErrorException
- Throws:
InternalErrorException
-
findCustomObjectByTextAndJsonQuery
PagedResult<CustomObject> findCustomObjectByTextAndJsonQuery(String objectType, String text, String filter, Integer start, Integer end) throws InternalErrorException
- Throws:
InternalErrorException
-
findCustomObjectByJsonQuery
Collection<CustomObject> findCustomObjectByJsonQuery(String objectType, String query) throws InternalErrorException
- Throws:
InternalErrorException
-
findCustomObjectByText
Collection<CustomObject> findCustomObjectByText(String objectType, String query) throws InternalErrorException
- Throws:
InternalErrorException
-
findCustomObjectByTextAndFilter
Collection<CustomObject> findCustomObjectByTextAndFilter(String objectType, String text, String filter) throws InternalErrorException
- Throws:
InternalErrorException
-
deleteCustomObject
void deleteCustomObject(CustomObject obj) throws InternalErrorException
- Throws:
InternalErrorException
-
-