Esempio n. 1
0
 public boolean hasCustomAction(Class<?> clazz, ActionKey actionKey) {
   EndpointFeatures<?> endpointFeatures = get(clazz);
   return endpointFeatures.hasCustomAction(actionKey);
 }
Esempio n. 2
0
 public boolean hasCustomAction(String endpointPath, ActionKey actionKey) {
   EndpointFeatures<?> endpointFeatures = get(endpointPath);
   return endpointFeatures.hasCustomAction(actionKey);
 }