Package org.openiam.esb.core.service
Interface AccessRightService
-
- All Known Implementing Classes:
AccessRightServiceImpl
public interface AccessRightService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
count(AccessRightSearchBean searchBean)
void
delete(String id)
List<AccessRight>
findBeans(AccessRightSearchBean searchBean, int from, int size)
List<AccessRight>
findByIds(Collection<String> ids)
AccessRight
get(String id)
String
save(AccessRight entity)
-
-
-
Method Detail
-
save
String save(AccessRight entity) throws BasicDataServiceException
- Throws:
BasicDataServiceException
-
delete
void delete(String id) throws BasicDataServiceException
- Throws:
BasicDataServiceException
-
get
AccessRight get(String id)
-
findBeans
List<AccessRight> findBeans(AccessRightSearchBean searchBean, int from, int size)
-
count
int count(AccessRightSearchBean searchBean)
-
findByIds
List<AccessRight> findByIds(Collection<String> ids)
-
-