return runMethod(context, action, target, parameters, null, null);
}
public static ObjectAction findAction(final ObjectAdapter object, final String methodName) {
if (object == null) {
throw new ScimpiException("Object not specified when looking for " + methodName);
}
final List<ObjectAction> actions = object.getSpecification().getObjectActions(Arrays.asList(ActionType.USER, ActionType.EXPLORATION, ActionType.PROTOTYPE, ActionType.DEBUG), Contributed.INCLUDED);
final ObjectAction action = findAction(actions, methodName);
/*