Package org.cyclos.impl.banking
Interface TransactionCustomFieldServiceLocal
-
- All Superinterfaces:
BaseCustomFieldService<TransactionCustomFieldDTO,TransactionCustomFieldData,Void>,CRUDService<TransactionCustomFieldDTO,TransactionCustomFieldData,Void>,CRUDServiceLocal<TransactionCustomField,TransactionCustomFieldDTO,TransactionCustomFieldData,Void>,Service,TransactionCustomFieldService
- All Known Implementing Classes:
TransactionCustomFieldServiceImpl
public interface TransactionCustomFieldServiceLocal extends TransactionCustomFieldService, CRUDServiceLocal<TransactionCustomField,TransactionCustomFieldDTO,TransactionCustomFieldData,Void>
Local interface forTransactionCustomFieldService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<TransactionCustomField>listAll()Returns all custom fieldsList<TransactionCustomField>listRelated(TransferType transferType)Returns the custom fields which are related to the given transfer type and visible by the logged user.List<TransactionCustomField>listVisible(AccountOwner owner)Returns the custom fields which are related to the current user over the given account owner-
Methods inherited from interface org.cyclos.services.system.BaseCustomFieldService
saveOrder
-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
Methods inherited from interface org.cyclos.impl.CRUDServiceLocal
find, findAll, getEntityClass, newEntity, remove, removeAll, saveEntity, saveSkippingEntityLog, toDTO, toEntity, validate
-
Methods inherited from interface org.cyclos.services.banking.TransactionCustomFieldService
addRelation, list, listAllRelated, listRelated, removeRelation
-
-
-
-
Method Detail
-
listAll
List<TransactionCustomField> listAll()
Returns all custom fields
-
listRelated
List<TransactionCustomField> listRelated(TransferType transferType)
Returns the custom fields which are related to the given transfer type and visible by the logged user.
-
listVisible
List<TransactionCustomField> listVisible(AccountOwner owner)
Returns the custom fields which are related to the current user over the given account owner
-
-