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 intcount(AccessRightSearchBean searchBean)voiddelete(String id)List<AccessRight>findBeans(AccessRightSearchBean searchBean, int from, int size)List<AccessRight>findByIds(Collection<String> ids)AccessRightget(String id)Stringsave(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)
-
-