Package com.soffid.iam.service.ejb
Interface AttributeTranslationService
-
public interface AttributeTranslationService
EJB AttributeTranslationService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeTranslation
create(AttributeTranslation att)
void
delete(AttributeTranslation att)
Collection<AttributeTranslation>
findByColumn1(String domain, String column1)
Collection<AttributeTranslation>
findByColumn2(String domain, String column2)
Collection<AttributeTranslation>
findByExample(String domain, String column1, String column2)
Collection<AttributeTranslation>
findByTextAndJsonQuery(String text, String query, Integer start, Integer pageSize)
AsyncList<AttributeTranslation>
findByTextAndJsonQueryAsync(String text, String query)
Collection<String>
findDomains()
AttributeTranslation
update(AttributeTranslation att)
-
-
-
Method Detail
-
findByTextAndJsonQueryAsync
AsyncList<AttributeTranslation> findByTextAndJsonQueryAsync(String text, String query) throws InternalErrorException
- Throws:
InternalErrorException
-
create
AttributeTranslation create(AttributeTranslation att) throws InternalErrorException
- Throws:
InternalErrorException
-
update
AttributeTranslation update(AttributeTranslation att) throws InternalErrorException
- Throws:
InternalErrorException
-
findByColumn1
Collection<AttributeTranslation> findByColumn1(String domain, String column1) throws InternalErrorException
- Throws:
InternalErrorException
-
findByColumn2
Collection<AttributeTranslation> findByColumn2(String domain, String column2) throws InternalErrorException
- Throws:
InternalErrorException
-
findByExample
Collection<AttributeTranslation> findByExample(String domain, String column1, String column2) throws InternalErrorException
- Throws:
InternalErrorException
-
findByTextAndJsonQuery
Collection<AttributeTranslation> findByTextAndJsonQuery(String text, String query, Integer start, Integer pageSize) throws InternalErrorException
- Throws:
InternalErrorException
-
findDomains
Collection<String> findDomains() throws InternalErrorException
- Throws:
InternalErrorException
-
delete
void delete(AttributeTranslation att) throws InternalErrorException
- Throws:
InternalErrorException
-
-