super(FeatureType.ACTIONS_ONLY);
}
@Override
public void process(final ProcessMethodContext processMethodContext) {
final QueryOnly annotation = Annotations.getAnnotation(processMethodContext.getMethod(), QueryOnly.class);
if (annotation == null) {
return;
}
final FacetedMethod facetHolder = processMethodContext.getFacetHolder();
FacetUtil.addFacet(new QueryOnlyFacetAnnotation(facetHolder));