Interface UserDefinedTableService
- All Known Implementing Classes:
UserDefinedTableServiceImpl
public interface UserDefinedTableService
-
Method Summary
Modifier and TypeMethodDescriptioncreateUserDefinedTableRows(EAMContext context, String tableName, List<UDTRow> rows) intdeleteUserDefinedTableRows(EAMContext context, String tableName, UDTRow filters) getMapAsUDTRow(String tableName, Map<String, Object> mapRow) getUDTRowAsMap(UDTRow row) getUDTRowsAsMaps(List<UDTRow> row) readUserDefinedTableRows(EAMContext context, String tableName, UDTRow filters, List<String> fieldsToRead) intupdateUserDefinedTableRows(EAMContext context, String tableName, UDTRow fieldsToUpdate, UDTRow filters)
-
Method Details
-
createUserDefinedTableRows
String createUserDefinedTableRows(EAMContext context, String tableName, List<UDTRow> rows) throws EAMException - Throws:
EAMException
-
readUserDefinedTableRows
List<Map<String,Object>> readUserDefinedTableRows(EAMContext context, String tableName, UDTRow filters, List<String> fieldsToRead) throws EAMException - Throws:
EAMException
-
updateUserDefinedTableRows
int updateUserDefinedTableRows(EAMContext context, String tableName, UDTRow fieldsToUpdate, UDTRow filters) throws EAMException - Throws:
EAMException
-
deleteUserDefinedTableRows
int deleteUserDefinedTableRows(EAMContext context, String tableName, UDTRow filters) throws EAMException - Throws:
EAMException
-
getUDTRowAsMap
- Throws:
EAMException
-
getUDTRowsAsMaps
- Throws:
EAMException
-
getMapAsUDTRow
- Throws:
EAMException
-
getMapsAsUDTRows
List<UDTRow> getMapsAsUDTRows(String tableName, List<Map<String, Object>> mapRows) throws EAMException- Throws:
EAMException
-