Package com.soffid.iam.service
Interface AttributeTranslationService
-
public interface AttributeTranslationService
Service AttributeTranslationService
-
-
Field Summary
Fields Modifier and Type Field Description static String
REMOTE_PATH
static String
SERVICE_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeTranslation
create(AttributeTranslation att)
Operation createvoid
delete(AttributeTranslation att)
Operation deleteCollection<AttributeTranslation>
findByColumn1(String domain, String column1)
Operation findByColumn1Collection<AttributeTranslation>
findByColumn2(String domain, String column2)
Operation findByColumn2Collection<AttributeTranslation>
findByExample(String domain, String column1, String column2)
Operation findByExampleCollection<AttributeTranslation>
findByTextAndJsonQuery(String text, String query, Integer start, Integer pageSize)
Operation findByTextAndJsonQueryAsyncList<AttributeTranslation>
findByTextAndJsonQueryAsync(String text, String query)
Operation findByTextAndJsonQueryAsyncCollection<String>
findDomains()
Operation findDomainsAttributeTranslation
update(AttributeTranslation att)
Operation update
-
-
-
Field Detail
-
REMOTE_PATH
static final String REMOTE_PATH
- See Also:
- Constant Field Values
-
SERVICE_NAME
static final String SERVICE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
findByTextAndJsonQueryAsync
AsyncList<AttributeTranslation> findByTextAndJsonQueryAsync(String text, String query) throws InternalErrorException
Operation findByTextAndJsonQueryAsync- Parameters:
text
-query
-- Returns:
- Throws:
InternalErrorException
-
create
AttributeTranslation create(AttributeTranslation att) throws InternalErrorException
Operation create- Parameters:
att
-- Returns:
- Throws:
InternalErrorException
-
update
AttributeTranslation update(AttributeTranslation att) throws InternalErrorException
Operation update- Parameters:
att
-- Returns:
- Throws:
InternalErrorException
-
findByColumn1
Collection<AttributeTranslation> findByColumn1(String domain, String column1) throws InternalErrorException
Operation findByColumn1- Parameters:
domain
-column1
-- Returns:
- Throws:
InternalErrorException
-
findByColumn2
Collection<AttributeTranslation> findByColumn2(String domain, String column2) throws InternalErrorException
Operation findByColumn2- Parameters:
domain
-column2
-- Returns:
- Throws:
InternalErrorException
-
findByExample
Collection<AttributeTranslation> findByExample(String domain, String column1, String column2) throws InternalErrorException
Operation findByExample- Parameters:
domain
-column1
-column2
-- Returns:
- Throws:
InternalErrorException
-
findByTextAndJsonQuery
Collection<AttributeTranslation> findByTextAndJsonQuery(String text, String query, Integer start, Integer pageSize) throws InternalErrorException
Operation findByTextAndJsonQuery- Parameters:
text
-query
-start
-pageSize
-- Returns:
- Throws:
InternalErrorException
-
findDomains
Collection<String> findDomains() throws InternalErrorException
Operation findDomains- Returns:
- Throws:
InternalErrorException
-
delete
void delete(AttributeTranslation att) throws InternalErrorException
Operation delete- Parameters:
att
-- Throws:
InternalErrorException
-
-