Searched defs:supportedObjectTypes (Results 1 - 2 of 2) sorted by relevance

/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/impl/
H A DOperationHelperBuilder.java52 private Map<String, ObjectClassInfoHelper> supportedObjectTypes; field in class:OperationHelperBuilder
60 supportedObjectTypes = ConnectorUtil.getObjectTypes(jsonConfiguration);
66 ObjectClassInfoHelper objectClassInfoHelper = supportedObjectTypes.get(objectType);
68 throw new BadRequestException("Unsupported object type: " + objectType + " not in supported types" + supportedObjectTypes.keySet());
/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/commons/
H A DOperationOptionInfoHelper.java46 public static final String OPERATION_OPTION_SUPPORTEDOBJECTTYPES = "supportedObjectTypes";
56 private final Set<String> supportedObjectTypes; field in class:OperationOptionInfoHelper
62 supportedObjectTypes = null;
89 this.supportedObjectTypes = Collections.unmodifiableSet(objectTypes);
92 this.supportedObjectTypes = null;
117 this.supportedObjectTypes = Collections.unmodifiableSet(objectTypes);
119 this.supportedObjectTypes = globalOption.getSupportedObjectTypes();
136 return null != supportedObjectTypes ? Collections.unmodifiableSet(supportedObjectTypes) : null;

Completed in 31 milliseconds