Package org.cyclos.impl.banking
Interface VoucherCustomFieldServiceLocal
-
- All Superinterfaces:
BaseCustomFieldService<VoucherCustomFieldDTO,VoucherCustomFieldData,Void>,CRUDService<VoucherCustomFieldDTO,VoucherCustomFieldData,Void>,CRUDServiceLocal<VoucherCustomField,VoucherCustomFieldDTO,VoucherCustomFieldData,Void>,Service,VoucherCustomFieldService
public interface VoucherCustomFieldServiceLocal extends VoucherCustomFieldService, CRUDServiceLocal<VoucherCustomField,VoucherCustomFieldDTO,VoucherCustomFieldData,Void>
Local interface forVoucherCustomFieldService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<VoucherCustomField>listAll()Returns all custom fieldsList<VoucherCustomField>listRelated(VoucherType voucherType, User user)Returns the custom fields which are related to the given voucher type and visible by the logged user over the given one.List<VoucherCustomField>listVisible(User user)Returns the custom fields which are visible by the logged user over the given one-
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.VoucherCustomFieldService
addRelation, list, listAllRelated, listRelated, removeRelation
-
-
-
-
Method Detail
-
listAll
List<VoucherCustomField> listAll()
Returns all custom fields
-
listRelated
List<VoucherCustomField> listRelated(VoucherType voucherType, User user)
Returns the custom fields which are related to the given voucher type and visible by the logged user over the given one.
-
listVisible
List<VoucherCustomField> listVisible(User user)
Returns the custom fields which are visible by the logged user over the given one
-
-