|
|||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | ||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | ||||||||
java.lang.Objectjp.go.nict.langrid.dao.jsonic.JsonicServiceDao
public class JsonicServiceDao
| コンストラクタの概要 | |
|---|---|
JsonicServiceDao(JsonicDaoContext context)
|
|
| メソッドの概要 | |
|---|---|
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)
serviceIdで指定されたサービスを取得する。 |
InputStream |
getServiceInstance(String serviceGridId,
String serviceId)
サービスの実体を取得する。 |
InputStream |
getServiceWsdl(String serviceGridId,
String serviceId)
サービスのWSDLを取得する。 |
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 serviceGridId,
String nodeId,
boolean acrossGrids,
MatchingCondition[] conditions,
int sinceDays,
Order[] orders)
サービスと統計情報を検索する。 |
| クラス java.lang.Object から継承されたメソッド |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| コンストラクタの詳細 |
|---|
public JsonicServiceDao(JsonicDaoContext context)
| メソッドの詳細 |
|---|
public void clear()
throws DaoException
ServiceDao の記述:
ServiceDao 内の clearDaoException - 情報の削除に失敗した
public void clearDetachedInvocations()
throws DaoException
ServiceDao の記述:
ServiceDao 内の clearDetachedInvocationsDaoException - 処理に失敗した
public List<Service> listAllServices(String serviceGridId)
throws DaoException
ServiceDao の記述:
ServiceDao 内の listAllServicesserviceGridId - サービスのグリッドID
DaoException - 処理に失敗した
public List<Service> listServicesOfUser(String userGridId,
String userId)
throws DaoException
ServiceDao の記述:
ServiceDao 内の listServicesOfUseruserGridId - ユーザのグリッドIDuserId - ユーザID
DaoException - 処理に失敗した
public List<BPELService> listParentServicesOf(String gridId,
String serviceId)
throws DaoException
ServiceDao の記述:
ServiceDao 内の listParentServicesOfgridId - グリッドIDserviceId - サービスID
DaoException - 処理に失敗した
public ServiceSearchResult searchServices(int startIndex,
int maxCount,
String serviceGridId,
boolean acrossGrids,
MatchingCondition[] conditions,
Order[] orders)
throws DaoException
ServiceDao の記述:
ServiceDao 内の searchServicesstartIndex - 開始インデックスmaxCount - 最大件数serviceGridId - サービスのグリッドIDacrossGrids - グリッドを越えて検索するかどうかconditions - 条件orders - ソート順
DaoException - 処理に失敗した
public ServiceStatRankingSearchResult searchServiceStatRanking(int startIndex,
int maxCount,
String serviceGridId,
String nodeId,
boolean acrossGrids,
MatchingCondition[] conditions,
int sinceDays,
Order[] orders)
throws DaoException
ServiceDao の記述:
ServiceDao 内の searchServiceStatRankingstartIndex - 開始インデックスmaxCount - 最大件数serviceGridId - サービスとノードのグリッドIDacrossGrids - グリッドを越えて検索するかどうかconditions - 条件orders - ソート順
DaoException - 処理に失敗した
public void addService(Service service)
throws DaoException,
ServiceAlreadyExistsException
ServiceDao の記述:
ServiceDao 内の addServiceservice - 追加するサービスの情報
DaoException - 情報の書き出しに失敗した
ServiceAlreadyExistsException - 既にサービスが存在する
public void deleteService(String serviceGridId,
String serviceId)
throws ServiceNotFoundException,
DaoException
ServiceDao の記述:
ServiceDao 内の deleteServiceserviceGridId - サービスのグリッドIDserviceId - 削除するサービスのID
ServiceNotFoundException - 指定されたサービスが見つからない
DaoException - 情報の読み込みに失敗した
public void deleteServicesOfGrid(String gridId)
throws DaoException
ServiceDao の記述:
ServiceDao 内の deleteServicesOfGridgridId - グリッドID
DaoException - 処理に失敗した
public void deleteServicesOfUser(String userGridId,
String userId)
throws DaoException
ServiceDao の記述:
ServiceDao 内の deleteServicesOfUseruserGridId - ユーザのグリッドIDuserId - ユーザID
DaoException - 処理に失敗した
public Service getService(String serviceGridId,
String serviceId)
throws ServiceNotFoundException,
DaoException
ServiceDao の記述:
ServiceDao 内の getServiceserviceGridId - サービスのグリッドIDserviceId - 取得するサービスのID
ServiceNotFoundException - 指定されたサービスが見つからない
DaoException - 情報の読み込みに失敗した
public boolean isServiceExist(String serviceGridId,
String serviceId)
throws DaoException
ServiceDao の記述:
ServiceDao 内の isServiceExistserviceGridId - サービスのグリッドIDserviceId - サービスID
DaoException - 処理に失敗した
public InputStream getServiceInstance(String serviceGridId,
String serviceId)
throws DaoException,
ServiceNotFoundException
ServiceDao の記述:
ServiceDao 内の getServiceInstanceserviceGridId - サービスのグリッドIDserviceId - サービスID
DaoException - 処理に失敗した
ServiceNotFoundException - サービスが見つからない
public InputStream getServiceWsdl(String serviceGridId,
String serviceId)
throws DaoException,
ServiceNotFoundException
ServiceDao の記述:
ServiceDao 内の getServiceWsdlserviceGridId - サービスのグリッドIDserviceId - サービスID
DaoException - 処理に失敗した
ServiceNotFoundException - サービスが見つからない
|
|||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | ||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | ||||||||