Searched defs:attributeMap (Results 26 - 50 of 53) sorted by relevance

123

/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/config/user/
H A DSTSInstanceConfig.java179 public static STSInstanceConfig marshalFromAttributeMap(Map<String, Set<String>> attributeMap) { argument
180 Map<String, Object> jsonAttributes = MapMarshallUtils.toJsonValueMap(attributeMap);
185 SAML2Config saml2Config = SAML2Config.marshalFromAttributeMap(attributeMap);
190 OpenIdConnectTokenConfig openIdConnectTokenConfig = OpenIdConnectTokenConfig.marshalFromAttributeMap(attributeMap);
H A DSAML2Config.java77 private Map<String, String> attributeMap; field in class:SAML2Config.SAML2ConfigBuilder
135 * @param attributeMap the attribute map.
138 public SAML2ConfigBuilder attributeMap(Map<String, String> attributeMap) { argument
139 this.attributeMap = Collections.unmodifiableMap(attributeMap);
453 private final Map<String, String> attributeMap; field in class:SAML2Config
479 if (builder.attributeMap != null) {
480 this.attributeMap = Collections.unmodifiableMap(builder.attributeMap);
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/soap/config/user/
H A DSoapDelegationConfig.java224 public static SoapDelegationConfig marshalFromAttributeMap(Map<String, Set<String>> attributeMap) { argument
226 if (CollectionUtils.isEmpty(attributeMap.get(DELEGATION_TOKEN_VALIDATORS)) && CollectionUtils.isEmpty(attributeMap.get(CUSTOM_DELEGATION_TOKEN_HANDLERS))) {
229 Map<String, Object> jsonAttributes = MapMarshallUtils.toJsonValueMap(attributeMap);
236 if (attributeMap.get(DELEGATION_TOKEN_VALIDATORS) != null) {
241 Set<String> stringTokenTranslations = attributeMap.get(DELEGATION_TOKEN_VALIDATORS);
252 if (attributeMap.get(CUSTOM_DELEGATION_TOKEN_HANDLERS) != null) {
257 Set<String> handlerClasses = attributeMap.get(CUSTOM_DELEGATION_TOKEN_HANDLERS);
H A DSoapSTSKeystoreConfig.java234 public static SoapSTSKeystoreConfig marshalFromAttributeMap(Map<String, Set<String>> attributeMap) { argument
235 if (CollectionUtils.isEmpty(attributeMap.get(KEYSTORE_FILENAME))) {
238 return fromJson(new JsonValue(MapMarshallUtils.toJsonValueMap(attributeMap)));
H A DSoapDeploymentConfig.java337 public static SoapDeploymentConfig marshalFromAttributeMap(Map<String, Set<String>> attributeMap) { argument
338 DeploymentConfig baseConfig = DeploymentConfig.marshalFromAttributeMap(attributeMap);
345 .amDeploymentUrl(CollectionUtils.getFirstItem(attributeMap.get(AM_DEPLOYMENT_URL), null));
346 handleCustomWsdlLocationSettings(builder, attributeMap);
358 private static void handleCustomWsdlLocationSettings(SoapDeploymentConfigBuilder builder, Map<String, Set<String>> attributeMap) { argument
359 final String wsdlLocation = CollectionUtils.getFirstItem(attributeMap.get(WSDL_LOCATION), null);
364 builder.customWsdlLocation(CollectionUtils.getFirstItem(attributeMap.get(CUSTOM_WSDL_LOCATION), null));
365 builder.customPortQName(QName.valueOf(CollectionUtils.getFirstItem(attributeMap.get(CUSTOM_PORT_QNAME), null)));
366 builder.customServiceQName(QName.valueOf(CollectionUtils.getFirstItem(attributeMap.get(CUSTOM_SERVICE_QNAME), null)));
369 builder.portQName(QName.valueOf(CollectionUtils.getFirstItem(attributeMap
[all...]
H A DSoapSTSInstanceConfig.java504 * @param attributeMap The attributeMap corresponding to the STS-persisted format of a soap-sts instance. Cannot be null.
505 * @return the SoapSTSInstanceConfig instance corresponding to attributeMap state. An IllegalStateException will be thrown
508 public static SoapSTSInstanceConfig marshalFromAttributeMap(Map<String, Set<String>> attributeMap) { argument
520 Map<String, Object> jsonAttributes = MapMarshallUtils.toJsonValueMap(attributeMap);
522 DeploymentConfig deploymentConfig = SoapDeploymentConfig.marshalFromAttributeMap(attributeMap);
526 SAML2Config saml2Config = SAML2Config.marshalFromAttributeMap(attributeMap);
532 OpenIdConnectTokenConfig openIdConnectTokenConfig = OpenIdConnectTokenConfig.marshalFromAttributeMap(attributeMap);
538 SoapSTSKeystoreConfig keystoreConfig = SoapSTSKeystoreConfig.marshalFromAttributeMap(attributeMap);
553 Set<String> stringTokenTranslations = attributeMap
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/webservices/
H A DWSPersonalProfileServiceViewBean.java286 private void populateDSAttributeMapListTable(Set attributeMap) { argument
295 for (Iterator iter = attributeMap.iterator(); iter.hasNext(); ) {
320 (OrderedSet)attributeMap);
333 Set attributeMap = (Set)getPageSessionAttribute(
336 if ((attributeMap != null) && !attributeMap.isEmpty()) {
339 attributeMap);
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/rest/config/user/
H A DRestSTSInstanceConfig.java494 public static RestSTSInstanceConfig marshalFromAttributeMap(Map<String, Set<String>> attributeMap) { argument
495 DeploymentConfig deploymentConfig = DeploymentConfig.marshalFromAttributeMap(attributeMap);
496 Map<String, Object> jsonAttributes = MapMarshallUtils.toJsonValueMap(attributeMap);
500 SAML2Config saml2Config = SAML2Config.marshalFromAttributeMap(attributeMap);
506 OpenIdConnectTokenConfig openIdConnectTokenConfig = OpenIdConnectTokenConfig.marshalFromAttributeMap(attributeMap);
522 Set<String> stringTokenTranslations = attributeMap.get(SUPPORTED_TOKEN_TRANSFORMS);
531 Set<String> stringCustomTranslations = attributeMap.get(CUSTOM_TOKEN_TRANSFORMS);
540 Set<String> stringCustomValidators = attributeMap.get(CUSTOM_TOKEN_VALIDATORS);
549 Set<String> stringCustomProviders = attributeMap.get(CUSTOM_TOKEN_PROVIDERS);
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/soap/config/user/
H A DSoapDeploymentConfig.java337 public static SoapDeploymentConfig marshalFromAttributeMap(Map<String, Set<String>> attributeMap) { argument
338 DeploymentConfig baseConfig = DeploymentConfig.marshalFromAttributeMap(attributeMap);
345 .amDeploymentUrl(CollectionUtils.getFirstItem(attributeMap.get(AM_DEPLOYMENT_URL), null));
346 handleCustomWsdlLocationSettings(builder, attributeMap);
358 private static void handleCustomWsdlLocationSettings(SoapDeploymentConfigBuilder builder, Map<String, Set<String>> attributeMap) { argument
359 final String wsdlLocation = CollectionUtils.getFirstItem(attributeMap.get(WSDL_LOCATION), null);
364 builder.customWsdlLocation(CollectionUtils.getFirstItem(attributeMap.get(CUSTOM_WSDL_LOCATION), null));
365 builder.customPortQName(QName.valueOf(CollectionUtils.getFirstItem(attributeMap.get(CUSTOM_PORT_QNAME), null)));
366 builder.customServiceQName(QName.valueOf(CollectionUtils.getFirstItem(attributeMap.get(CUSTOM_SERVICE_QNAME), null)));
369 builder.portQName(QName.valueOf(CollectionUtils.getFirstItem(attributeMap
[all...]
H A DSoapSTSInstanceConfig.java504 * @param attributeMap The attributeMap corresponding to the STS-persisted format of a soap-sts instance. Cannot be null.
505 * @return the SoapSTSInstanceConfig instance corresponding to attributeMap state. An IllegalStateException will be thrown
508 public static SoapSTSInstanceConfig marshalFromAttributeMap(Map<String, Set<String>> attributeMap) { argument
520 Map<String, Object> jsonAttributes = MapMarshallUtils.toJsonValueMap(attributeMap);
522 DeploymentConfig deploymentConfig = SoapDeploymentConfig.marshalFromAttributeMap(attributeMap);
526 SAML2Config saml2Config = SAML2Config.marshalFromAttributeMap(attributeMap);
532 OpenIdConnectTokenConfig openIdConnectTokenConfig = OpenIdConnectTokenConfig.marshalFromAttributeMap(attributeMap);
538 SoapSTSKeystoreConfig keystoreConfig = SoapSTSKeystoreConfig.marshalFromAttributeMap(attributeMap);
553 Set<String> stringTokenTranslations = attributeMap
[all...]
/forgerock/openam-v13/openam-sts/openam-client-sts/src/test/java/org/forgerock/openam/sts/soap/config/user/
H A DSoapSTSInstanceConfigTest.java261 Map<String, Set<String>> attributeMap = config.marshalToAttributeMap();
262 JsonValue jsonMap = new JsonValue(attributeMap);
267 attributeMap = config.marshalToAttributeMap();
268 jsonMap = new JsonValue(attributeMap);
276 Map<String, Set<String>> attributeMap = config.marshalToAttributeMap();
277 JsonValue jsonMap = new JsonValue(attributeMap);
282 attributeMap = config.marshalToAttributeMap();
283 jsonMap = new JsonValue(attributeMap);
284 System.out.println("After marshalling to attribute map: " + attributeMap);
374 Map<String,String> attributeMap
449 buildSAML2Config(Map<String, String> attributeMap) argument
[all...]
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DCommonFactory.java143 String dateFormatString, Map attributeMap)
145 return newServletRequestHelper(dateFormatString, attributeMap, null);
149 String dateFormatString, Map attributeMap,
156 result.initialize(dateFormatString, attributeMap, inputStream);
142 newServletRequestHelper( String dateFormatString, Map attributeMap) argument
148 newServletRequestHelper( String dateFormatString, Map attributeMap, ServletInputStream inputStream) argument
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/
H A DAttributeTaskHandler.java140 AmFilterRequestContext ctx, Map attributeMap)
144 if (attributeMap != null && attributeMap.size() > 0) {
145 Iterator it = attributeMap.keySet().iterator();
148 Set nextValueSet = (Set) attributeMap.get(nextName);
197 Map attributeMap)
200 if (attributeMap != null && attributeMap.size() > 0) {
201 Iterator it = attributeMap.keySet().iterator();
208 nextValue = (Set) attributeMap
139 addAttributesAsCookies( AmFilterRequestContext ctx, Map attributeMap) argument
196 addAttributesToRequest(HttpServletRequest request, Map attributeMap) argument
241 getHttpServletRequestHelper( Map attributeMap) argument
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/rest/config/user/
H A DRestSTSInstanceConfig.java494 public static RestSTSInstanceConfig marshalFromAttributeMap(Map<String, Set<String>> attributeMap) { argument
495 DeploymentConfig deploymentConfig = DeploymentConfig.marshalFromAttributeMap(attributeMap);
496 Map<String, Object> jsonAttributes = MapMarshallUtils.toJsonValueMap(attributeMap);
500 SAML2Config saml2Config = SAML2Config.marshalFromAttributeMap(attributeMap);
506 OpenIdConnectTokenConfig openIdConnectTokenConfig = OpenIdConnectTokenConfig.marshalFromAttributeMap(attributeMap);
522 Set<String> stringTokenTranslations = attributeMap.get(SUPPORTED_TOKEN_TRANSFORMS);
531 Set<String> stringCustomTranslations = attributeMap.get(CUSTOM_TOKEN_TRANSFORMS);
540 Set<String> stringCustomValidators = attributeMap.get(CUSTOM_TOKEN_VALIDATORS);
549 Set<String> stringCustomProviders = attributeMap.get(CUSTOM_TOKEN_PROVIDERS);
/forgerock/openam/openam-sts/openam-client-sts/src/test/java/org/forgerock/openam/sts/soap/config/user/
H A DSoapSTSInstanceConfigTest.java261 Map<String, Set<String>> attributeMap = config.marshalToAttributeMap();
262 JsonValue jsonMap = new JsonValue(attributeMap);
267 attributeMap = config.marshalToAttributeMap();
268 jsonMap = new JsonValue(attributeMap);
276 Map<String, Set<String>> attributeMap = config.marshalToAttributeMap();
277 JsonValue jsonMap = new JsonValue(attributeMap);
282 attributeMap = config.marshalToAttributeMap();
283 jsonMap = new JsonValue(attributeMap);
284 System.out.println("After marshalling to attribute map: " + attributeMap);
374 Map<String,String> attributeMap
449 buildSAML2Config(Map<String, String> attributeMap) argument
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/webservices/
H A DWSPersonalProfileServiceViewBean.java286 private void populateDSAttributeMapListTable(Set attributeMap) { argument
295 for (Iterator iter = attributeMap.iterator(); iter.hasNext(); ) {
320 (OrderedSet)attributeMap);
333 Set attributeMap = (Set)getPageSessionAttribute(
336 if ((attributeMap != null) && !attributeMap.isEmpty()) {
339 attributeMap);
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/config/user/
H A DSAML2Config.java66 private Map<String, String> attributeMap; field in class:SAML2Config.SAML2ConfigBuilder
109 public SAML2ConfigBuilder attributeMap(Map<String, String> attributeMap) { argument
110 this.attributeMap = Collections.unmodifiableMap(attributeMap);
293 private final Map<String, String> attributeMap; field in class:SAML2Config
319 if (builder.attributeMap != null) {
320 this.attributeMap = Collections.unmodifiableMap(builder.attributeMap);
322 attributeMap
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSAssertionArtifactHandler.java1371 Map attributeMap = null;
1374 attributeMap = realmAttributeMapper.getAttributes(
1378 attributeMap = attributeMapper.getAttributes(
1384 "generateToken: Attribute map :" + attributeMap);
1386 if (attributeMap != null) {
1387 setAttributeMap(ssoToken, attributeMap);
1637 Map attributeMap = null;
1640 attributeMap = realmAttributeMapper.getAttributes(
1644 attributeMap = attributeMapper.getAttributes(
1650 "generateToken: Attribute map :" + attributeMap);
1938 setAttributeMap(Object token, Map attributeMap) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/fednsso/
H A DFSAssertionArtifactHandler.java1373 Map attributeMap = null;
1376 attributeMap = realmAttributeMapper.getAttributes(
1380 attributeMap = attributeMapper.getAttributes(
1386 "generateToken: Attribute map :" + attributeMap);
1388 if (attributeMap != null) {
1389 setAttributeMap(ssoToken, attributeMap);
1639 Map attributeMap = null;
1642 attributeMap = realmAttributeMapper.getAttributes(
1646 attributeMap = attributeMapper.getAttributes(
1652 "generateToken: Attribute map :" + attributeMap);
1940 setAttributeMap(Object token, Map attributeMap) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/plugins/internal/
H A DAgentsRepo.java1367 private boolean oauth2PasswordMatch(Map attributeMap, String unhashedPassword, String userPassword) { argument
1368 return attributeMap.keySet().contains(oauth2Attribute) && unhashedPassword.equals(userPassword);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/plugins/internal/
H A DAgentsRepo.java1384 private boolean oauth2PasswordMatch(Map attributeMap, String unhashedPassword, String userPassword) { argument
1385 return attributeMap.keySet().contains(oauth2Attribute) && unhashedPassword.equals(userPassword);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DLoginState.java3853 * @param attributeMap map object has service url attribute
3857 String getServiceURLFromAttribute(Map attributeMap, String attrName) { argument
3859 (Set) attributeMap.get(attrName);
3863 DEBUG.message("attr map: " + attributeMap +
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DLoginState.java3743 * @param attributeMap map object has service url attribute
3747 private String getServiceURLFromAttribute(Map attributeMap, String attrName) { argument
3749 (Set) attributeMap.get(attrName);
3753 DEBUG.message("attr map: " + attributeMap +
/forgerock/opendj2/ext/ant/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 237 milliseconds

123