Searched refs:mapper (Results 51 - 75 of 192) sorted by relevance

12345678

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DCertificateMapperConfigManager.java79 * Creates a new instance of this certificate mapper config manager.
96 * mapper initialization process to fail.
113 // can be notified if any certificate mapper entries are added or removed.
130 CertificateMapper mapper = loadMapper(className, mapperConfiguration,
132 certificateMappers.put(mapperConfiguration.dn(), mapper);
134 mapper);
154 // certificate mapper.
188 // certificate mapper.
216 // certificate mapper is in use.
248 // certificate mapper
[all...]
H A DIdentityMapperConfigManager.java75 * Creates a new instance of this identity mapper config manager.
93 * mapper initialization process to fail.
110 // can be notified if any identity mapper entries are added or removed.
127 IdentityMapper mapper = loadMapper(className, mapperConfiguration,
129 identityMappers.put(mapperConfiguration.dn(), mapper);
131 mapper);
143 // Server's proxied auth mapper is valid. If not, then log a warning
167 // identity mapper.
203 // identity mapper.
233 // identity mapper i
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/core/
H A DCertificateMapperConfigManager.java80 * Creates a new instance of this certificate mapper config manager.
95 * mapper initialization process to fail.
112 // can be notified if any certificate mapper entries are added or removed.
129 CertificateMapper mapper = loadMapper(className, mapperConfiguration,
131 certificateMappers.put(mapperConfiguration.dn(), mapper);
133 mapper);
156 // certificate mapper.
195 // certificate mapper.
231 // certificate mapper is in use.
271 // certificate mapper
[all...]
H A DIdentityMapperConfigManager.java81 * Creates a new instance of this identity mapper config manager.
95 * mapper initialization process to fail.
112 // can be notified if any identity mapper entries are added or removed.
129 IdentityMapper mapper = loadMapper(className, mapperConfiguration,
131 identityMappers.put(mapperConfiguration.dn(), mapper);
133 mapper);
145 // Server's proxied auth mapper is valid. If not, then log a warning
171 // identity mapper.
210 // identity mapper.
246 // identity mapper i
[all...]
/forgerock/opendj2/src/server/org/opends/server/core/
H A DCertificateMapperConfigManager.java79 * Creates a new instance of this certificate mapper config manager.
94 * mapper initialization process to fail.
111 // can be notified if any certificate mapper entries are added or removed.
128 CertificateMapper mapper = loadMapper(className, mapperConfiguration,
130 certificateMappers.put(mapperConfiguration.dn(), mapper);
132 mapper);
155 // certificate mapper.
194 // certificate mapper.
230 // certificate mapper is in use.
270 // certificate mapper
[all...]
H A DIdentityMapperConfigManager.java80 * Creates a new instance of this identity mapper config manager.
94 * mapper initialization process to fail.
111 // can be notified if any identity mapper entries are added or removed.
128 IdentityMapper mapper = loadMapper(className, mapperConfiguration,
130 identityMappers.put(mapperConfiguration.dn(), mapper);
132 mapper);
144 // Server's proxied auth mapper is valid. If not, then log a warning
170 // identity mapper.
209 // identity mapper.
245 // identity mapper i
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/core/
H A DCertificateMapperConfigManager.java80 * Creates a new instance of this certificate mapper config manager.
95 * mapper initialization process to fail.
112 // can be notified if any certificate mapper entries are added or removed.
129 CertificateMapper mapper = loadMapper(className, mapperConfiguration,
131 certificateMappers.put(mapperConfiguration.dn(), mapper);
133 mapper);
156 // certificate mapper.
195 // certificate mapper.
231 // certificate mapper is in use.
271 // certificate mapper
[all...]
H A DIdentityMapperConfigManager.java81 * Creates a new instance of this identity mapper config manager.
95 * mapper initialization process to fail.
112 // can be notified if any identity mapper entries are added or removed.
129 IdentityMapper mapper = loadMapper(className, mapperConfiguration,
131 identityMappers.put(mapperConfiguration.dn(), mapper);
133 mapper);
145 // Server's proxied auth mapper is valid. If not, then log a warning
171 // identity mapper.
210 // identity mapper.
246 // identity mapper i
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DCertificateMapperConfigManager.java80 * Creates a new instance of this certificate mapper config manager.
95 * mapper initialization process to fail.
112 // can be notified if any certificate mapper entries are added or removed.
129 CertificateMapper mapper = loadMapper(className, mapperConfiguration,
131 certificateMappers.put(mapperConfiguration.dn(), mapper);
133 mapper);
156 // certificate mapper.
195 // certificate mapper.
231 // certificate mapper is in use.
271 // certificate mapper
[all...]
H A DIdentityMapperConfigManager.java81 * Creates a new instance of this identity mapper config manager.
95 * mapper initialization process to fail.
112 // can be notified if any identity mapper entries are added or removed.
129 IdentityMapper mapper = loadMapper(className, mapperConfiguration,
131 identityMappers.put(mapperConfiguration.dn(), mapper);
133 mapper);
145 // Server's proxied auth mapper is valid. If not, then log a warning
171 // identity mapper.
210 // identity mapper.
246 // identity mapper i
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DCertificateMapperConfigManager.java79 * Creates a new instance of this certificate mapper config manager.
94 * mapper initialization process to fail.
111 // can be notified if any certificate mapper entries are added or removed.
128 CertificateMapper mapper = loadMapper(className, mapperConfiguration,
130 certificateMappers.put(mapperConfiguration.dn(), mapper);
132 mapper);
155 // certificate mapper.
194 // certificate mapper.
230 // certificate mapper is in use.
270 // certificate mapper
[all...]
H A DIdentityMapperConfigManager.java80 * Creates a new instance of this identity mapper config manager.
94 * mapper initialization process to fail.
111 // can be notified if any identity mapper entries are added or removed.
128 IdentityMapper mapper = loadMapper(className, mapperConfiguration,
130 identityMappers.put(mapperConfiguration.dn(), mapper);
132 mapper);
144 // Server's proxied auth mapper is valid. If not, then log a warning
170 // identity mapper.
209 // identity mapper.
245 // identity mapper i
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DCollectionUtils.java151 * Maps the values of a non-null map from one type to another type using a non-null mapper function.
155 * @param mapper
172 final Function<I, M, E> mapper) throws E {
173 Reject.ifNull(map, mapper);
177 newMap.put(entry.getKey(), mapper.apply(entry.getValue()));
184 * Maps the non-null values from one type to another type using a non-null mapper function.
188 * @param mapper
203 final Function<I, M, E> mapper) throws E {
204 Reject.ifNull(values, mapper);
208 newList.add(mapper
171 transformMap(final Map<K, I> map, final Function<I, M, E> mapper) argument
202 transformList(final Collection<I> values, final Function<I, M, E> mapper) argument
233 transformSet(final Collection<I> values, final Function<I, M, E> mapper) argument
[all...]
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DCollectionUtils.java152 * Maps the values of a non-null map from one type to another type using a non-null mapper function.
156 * @param mapper
173 final Function<I, M, E> mapper) throws E {
174 Reject.ifNull(map, mapper);
178 newMap.put(entry.getKey(), mapper.apply(entry.getValue()));
185 * Maps the non-null values from one type to another type using a non-null mapper function.
189 * @param mapper
204 final Function<I, M, E> mapper) throws E {
205 Reject.ifNull(values, mapper);
209 newList.add(mapper
172 transformMap(final Map<K, I> map, final Function<I, M, E> mapper) argument
203 transformList(final Collection<I> values, final Function<I, M, E> mapper) argument
234 transformSet(final Collection<I> values, final Function<I, M, E> mapper) argument
[all...]
/forgerock/openam-v13/openam-authentication/deviceprint/module/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DUserProfilesDao.java60 private static final ObjectMapper mapper = new ObjectMapper() field in class:UserProfilesDao
86 profiles.add(mapper.readValue(i.next(), UserProfile.class));
145 mapper.writeValue(strWriter, userProfile);
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/mechanisms/oath/
H A DOathFactory.java37 private final OathAuthMapper mapper = new OathAuthMapper(); field in class:OathFactory
62 return mapper;
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/datasource/jdbc/impl/
H A DJDBCDataSourceService.java107 final ObjectMapper mapper = (ObjectMapper) jsonParser.getCodec();
108 final ObjectNode node = mapper.readTree(jsonParser);
118 return mapper.treeToValue(node, JndiDataSourceConfig.class);
120 return mapper.treeToValue(node, OsgiDataSourceConfig.class);
124 return mapper.treeToValue(node, BoneCPDataSourceConfig.class);
131 return mapper.treeToValue(node, NonPoolingDataSourceConfig.class);
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/
H A DSMDiscoveryServiceViewBean.java326 Set mapper = (Set)attributeValues.get(
328 populateProviderResourceIdMapperTable(mapper);
330 Set mapper = (Set)removePageSessionAttribute(
332 if ((mapper != null) && !mapper.isEmpty()) {
333 populateProviderResourceIdMapperTable(mapper);
384 private void populateProviderResourceIdMapperTable(Collection mapper) { argument
388 if (mapper != null) {
396 for (Iterator i = mapper.iterator(); i.hasNext(); ) {
495 Set mapper
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/
H A DSMDiscoveryServiceViewBean.java326 Set mapper = (Set)attributeValues.get(
328 populateProviderResourceIdMapperTable(mapper);
330 Set mapper = (Set)removePageSessionAttribute(
332 if ((mapper != null) && !mapper.isEmpty()) {
333 populateProviderResourceIdMapperTable(mapper);
384 private void populateProviderResourceIdMapperTable(Collection mapper) { argument
388 if (mapper != null) {
396 for (Iterator i = mapper.iterator(); i.hasNext(); ) {
495 Set mapper
[all...]
/forgerock/openidm-v4/openidm-provisioner-openicf/src/test/java/org/forgerock/openidm/provisioner/openicf/syncfailure/
H A DSyncFailureHandlerFactoryImplTest.java37 private ObjectMapper mapper; field in class:SyncFailureHandlerFactoryImplTest
43 mapper = new ObjectMapper();
57 return new JsonValue((Map) mapper.readValue(json, Map.class));
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/wrappers/
H A DReferralWrapper.java93 final ObjectMapper mapper = JsonValueBuilder.getObjectMapper();
94 return JsonValueBuilder.toJsonValue(mapper.writeValueAsString(this));
/forgerock/openidm-v4/openidm-provisioner-openicf/src/test/java/org/forgerock/openidm/provisioner/openicf/commons/
H A DConnectorUtilTest.java85 ObjectMapper mapper = new ObjectMapper();
86 Map map = mapper.readValue(inputStream, Map.class);
157 ObjectMapper mapper = new ObjectMapper();
159 mapper.writeValue(new File((new URL(root, "runtimeAPIConfiguration.json")).toURI()), target);
178 ObjectMapper mapper = new ObjectMapper();
180 mapper.writeValue(new File((new URL(root, "schema.json")).toURI()), schemaMAP);
190 // ObjectMapper mapper = new ObjectMapper();
191 // JsonValue configuration = new JsonValue(mapper.readValue(inputStream, Map.class));
310 final ObjectMapper mapper = new ObjectMapper();
311 return new JsonValue(mapper
[all...]
H A DObjectClassInfoHelperFactoryTest.java96 final ObjectMapper mapper = new ObjectMapper();
97 return new JsonValue(mapper.readValue(json, Map.class));
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/wrappers/
H A DReferralWrapper.java93 final ObjectMapper mapper = JsonValueBuilder.getObjectMapper();
94 return JsonValueBuilder.toJsonValue(mapper.writeValueAsString(this));
/forgerock/openidm-v4/openidm-shell/src/main/java/org/forgerock/openidm/shell/felixgogo/debug/
H A DInteractiveObjectSetService.java62 private final ObjectMapper mapper = new ObjectMapper(); field in class:InteractiveObjectSetService
94 mapper.writerWithDefaultPrettyPrinter().writeValue(wr, request.getObject());
160 Object map = mapper.readValue(inputFile, Map.class);
186 Object map = mapper.readValue(stringBuilder.toString(), Map.class);

Completed in 76 milliseconds

12345678