コード例 #1
0
ファイル: RepositoryFeatures.java プロジェクト: samukanm/yawp
 public boolean hasCustomAction(Class<?> clazz, ActionKey actionKey) {
   EndpointFeatures<?> endpointFeatures = get(clazz);
   return endpointFeatures.hasCustomAction(actionKey);
 }
コード例 #2
0
ファイル: RepositoryFeatures.java プロジェクト: samukanm/yawp
 public boolean hasCustomAction(String endpointPath, ActionKey actionKey) {
   EndpointFeatures<?> endpointFeatures = get(endpointPath);
   return endpointFeatures.hasCustomAction(actionKey);
 }