public interface ServiceDao
| Modifier and Type | Method and Description |
|---|---|
void |
addService(Service service) |
void |
clear() |
void |
clearDetachedInvocations() |
void |
deleteService(String serviceGridId,
String serviceId) |
void |
deleteServicesOfGrid(String gridId) |
void |
deleteServicesOfUser(String userGridId,
String userId) |
Service |
getService(String serviceGridId,
String serviceId) |
InputStream |
getServiceInstance(String serviceGridId,
String serviceId) |
InputStream |
getServiceWsdl(String serviceGridId,
String serviceId) |
boolean |
isServiceExist(String serviceGridId,
String serviceId) |
List<Service> |
listAllServices(String serviceGridId) |
List<BPELService> |
listParentServicesOf(String gridId,
String serviceId) |
List<Service> |
listServicesOfUser(String userGridId,
String userId) |
ServiceSearchResult |
searchServices(int startIndex,
int maxCount,
String serviceGridId,
boolean acrossGrids,
MatchingCondition[] conditions,
Order[] orders) |
ServiceStatRankingSearchResult |
searchServiceStatRanking(int startIndex,
int maxCount,
String serviceAndNodeGridId,
String nodeId,
boolean acrossGrids,
MatchingCondition[] conditions,
int sinceDays,
Order[] orders) |
void clear()
throws DaoException
DaoExceptionvoid clearDetachedInvocations()
throws DaoException
DaoExceptionList<Service> listAllServices(String serviceGridId) throws DaoException
DaoExceptionList<Service> listServicesOfUser(String userGridId, String userId) throws DaoException
DaoExceptionList<BPELService> listParentServicesOf(String gridId, String serviceId) throws DaoException
DaoExceptionServiceSearchResult searchServices(int startIndex, int maxCount, String serviceGridId, boolean acrossGrids, MatchingCondition[] conditions, Order[] orders) throws DaoException
DaoExceptionServiceStatRankingSearchResult searchServiceStatRanking(int startIndex, int maxCount, String serviceAndNodeGridId, String nodeId, boolean acrossGrids, MatchingCondition[] conditions, int sinceDays, Order[] orders) throws DaoException
DaoExceptionvoid addService(Service service) throws DaoException, ServiceAlreadyExistsException
void deleteService(String serviceGridId, String serviceId) throws ServiceNotFoundException, DaoException
ServiceNotFoundExceptionDaoExceptionvoid deleteServicesOfGrid(String gridId) throws DaoException
DaoExceptionvoid deleteServicesOfUser(String userGridId, String userId) throws DaoException
DaoExceptionService getService(String serviceGridId, String serviceId) throws ServiceNotFoundException, DaoException
ServiceNotFoundExceptionDaoExceptionboolean isServiceExist(String serviceGridId, String serviceId) throws DaoException
DaoExceptionInputStream getServiceInstance(String serviceGridId, String serviceId) throws DaoException, ServiceNotFoundException
DaoExceptionServiceNotFoundExceptionInputStream getServiceWsdl(String serviceGridId, String serviceId) throws DaoException, ServiceNotFoundException
DaoExceptionServiceNotFoundException