Searched refs:configMap (Results 1 - 25 of 77) sorted by relevance

1234

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMObjectListener.java51 * @param configMap
57 public void objectChanged(String name, int type, Map configMap); argument
73 * @param configMap
80 Map configMap);
92 * @param configMap
98 public void permissionsChanged(String orgName, Map configMap); argument
79 objectsChanged(String parentNames, int type, Set attrNames, Map configMap) argument
H A DAMObjectListenerImpl.java52 public void objectChanged(String name, int eventType, Map configMap) { argument
86 Map configMap) {
91 + "\n config map= " + configMap);
120 public void permissionsChanged(String orgName, Map configMap) { argument
85 objectsChanged(String parentName, int eventType, Set attrNames, Map configMap) argument
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMObjectListener.java51 * @param configMap
57 public void objectChanged(String name, int type, Map configMap); argument
73 * @param configMap
80 Map configMap);
92 * @param configMap
98 public void permissionsChanged(String orgName, Map configMap); argument
79 objectsChanged(String parentNames, int type, Set attrNames, Map configMap) argument
H A DAMObjectListenerImpl.java52 public void objectChanged(String name, int eventType, Map configMap) { argument
86 Map configMap) {
91 + "\n config map= " + configMap);
120 public void permissionsChanged(String orgName, Map configMap) { argument
85 objectsChanged(String parentName, int eventType, Set attrNames, Map configMap) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/idpp/plugin/
H A DIDPPAttributeMapper.java56 Map configMap = IDPPServiceManager.getInstance().getPPDSMap();
57 if(configMap == null) {
62 String attribMap = (String)configMap.get(ppAttribute);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/idpp/plugin/
H A DIDPPAttributeMapper.java56 Map configMap = IDPPServiceManager.getInstance().getPPDSMap();
57 if(configMap == null) {
62 String attribMap = (String)configMap.get(ppAttribute);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DDSAMECallbackInterface.java45 * @param configMap Map contains the values required by the custom callback.
48 public void setConfig(Map configMap) throws AuthenticationException; argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DDSAMECallbackInterface.java45 * @param configMap Map contains the values required by the custom callback.
48 public void setConfig(Map configMap) throws AuthenticationException; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/plugins/
H A DDefaultSPAttributeMapper.java95 Map<String, String> configMap = getConfigAttributeMap(realm, hostEntityID, SP);
96 if (configMap == null || configMap.isEmpty()) {
103 debug.message("DefaultSPAttributeMapper.getAttr: hosted SP attribute map = " + configMap);
122 if (SAML2Constants.ATTR_WILD_CARD.equals(configMap.get(SAML2Constants.ATTR_WILD_CARD))) {
126 String localAttribute = configMap.get(attributeName);
H A DDefaultLibraryIDPAttributeMapper.java153 Map<String, String> configMap = getConfigAttributeMap(realm, remoteEntityID, SP);
156 "getAttributes: remote SP attribute map = " + configMap);
158 if (configMap == null || configMap.isEmpty()) {
159 configMap = getConfigAttributeMap(realm, hostEntityID, IDP);
160 if (configMap == null || configMap.isEmpty()) {
169 "getAttributes: hosted IDP attribute map=" + configMap);
181 Set<String> stringAttributes = new HashSet<String>(configMap.size());
182 Set<String> binaryAttributes = new HashSet<String>(configMap
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/plugins/
H A DDefaultSPAttributeMapper.java95 Map<String, String> configMap = getConfigAttributeMap(realm, hostEntityID, SP);
96 if (configMap == null || configMap.isEmpty()) {
103 debug.message("DefaultSPAttributeMapper.getAttr: hosted SP attribute map = " + configMap);
122 if (SAML2Constants.ATTR_WILD_CARD.equals(configMap.get(SAML2Constants.ATTR_WILD_CARD))) {
126 String localAttribute = configMap.get(attributeName);
H A DDefaultLibraryIDPAttributeMapper.java149 Map<String, String> configMap = getConfigAttributeMap(realm, remoteEntityID, SP);
150 debug.message(debugMethod + "Remote SP attribute map = {}", configMap);
151 if (CollectionUtils.isEmpty(configMap)) {
152 configMap = getConfigAttributeMap(realm, hostEntityID, IDP);
153 if (CollectionUtils.isEmpty(configMap)) {
157 debug.message(debugMethod + "Hosted IDP attribute map = {}", configMap);
168 Set<String> stringAttributes = new HashSet<>(configMap.size());
169 Set<String> binaryAttributes = new HashSet<>(configMap.size());
170 for (String localAttribute : configMap.values()) {
194 for (Map.Entry<String, String> entry : configMap
[all...]
/forgerock/openam-v13/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/psearch/
H A DDJLDAPv3PersistentSearch.java52 public DJLDAPv3PersistentSearch(Map<String, Set<String>> configMap, ConnectionFactory factory) { argument
53 super(CollectionHelper.getIntMapAttr(configMap, LDAP_RETRY_INTERVAL, 3000, DEBUG),
54 DN.valueOf(CollectionHelper.getMapAttr(configMap, LDAP_PERSISTENT_SEARCH_BASE_DN)), LDAPUtils
55 .parseFilter(CollectionHelper.getMapAttr(configMap, LDAP_PERSISTENT_SEARCH_FILTER),
57 .getSearchScope(CollectionHelper.getMapAttr(configMap, LDAP_PERSISTENT_SEARCH_SCOPE),
59 CollectionHelper.getMapAttr(configMap, LDAP_USER_SEARCH_ATTR));
60 usersSearchAttributeName = CollectionHelper.getMapAttr(configMap, LDAP_USER_SEARCH_ATTR);
/forgerock/openam/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/psearch/
H A DDJLDAPv3PersistentSearch.java54 * @param configMap Non null. Map containing the configuration data necessary to perform a persistent search,
59 public DJLDAPv3PersistentSearch(Map<String, Set<String>> configMap, ConnectionFactory factory) { argument
60 super(CollectionHelper.getIntMapAttr(configMap, LDAP_RETRY_INTERVAL, 3000, DEBUG),
61 DN.valueOf(CollectionHelper.getMapAttr(configMap, LDAP_PERSISTENT_SEARCH_BASE_DN)), LDAPUtils
62 .parseFilter(CollectionHelper.getMapAttr(configMap, LDAP_PERSISTENT_SEARCH_FILTER),
64 .getSearchScope(CollectionHelper.getMapAttr(configMap, LDAP_PERSISTENT_SEARCH_SCOPE),
66 CollectionHelper.getMapAttr(configMap, LDAP_USER_SEARCH_ATTR));
67 usersSearchAttributeName = CollectionHelper.getMapAttr(configMap, LDAP_USER_SEARCH_ATTR);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultIDPAttributeMapper.java109 Map configMap = getConfigAttributeMap(realm, hostEntityID);
110 if(configMap == null || configMap.isEmpty()) {
121 localAttributes.addAll(configMap.values());
136 Iterator iter = configMap.keySet().iterator();
139 String localAttribute = (String)configMap.get(samlAttribute);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSDefaultAttributeMapper.java86 Map configMap = null;
94 configMap = FSServiceUtils.parseAttributeConfig((List)
107 configMap);
133 if (configMap != null && !configMap.isEmpty()) {
134 String realAttrName = (String)configMap.get(attributeName);
H A DFSDefaultRealmAttributeMapper.java88 Map configMap = null;
96 configMap = FSServiceUtils.parseAttributeConfig((List)
109 configMap);
135 if (configMap != null && !configMap.isEmpty()) {
136 String realAttrName = (String)configMap.get(attributeName);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSDefaultAttributeMapper.java86 Map configMap = null;
94 configMap = FSServiceUtils.parseAttributeConfig((List)
107 configMap);
133 if (configMap != null && !configMap.isEmpty()) {
134 String realAttrName = (String)configMap.get(attributeName);
H A DFSDefaultRealmAttributeMapper.java88 Map configMap = null;
96 configMap = FSServiceUtils.parseAttributeConfig((List)
109 configMap);
135 if (configMap != null && !configMap.isEmpty()) {
136 String realAttrName = (String)configMap.get(attributeName);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DSubjectAttributesCollector.java61 * @param configMap configuration map
63 public void init(String realm, Map<String, Set<String>> configMap); argument
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DUmaUserUiRolePredicate.java49 private static Map<String, ServiceConfig> configMap = new ConcurrentHashMap<String, ServiceConfig>(); field in class:UmaUserUiRolePredicate
79 ServiceConfig orgConfig = configMap.get(realm);
94 configMap.put(realm, orgConfig);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DSubjectAttributesCollector.java66 * @param configMap configuration map
68 public void init(String realm, Map<String, Set<String>> configMap); argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultIDPAttributeMapper.java116 Map<String, String> configMap = getConfigAttributeMap(realm, hostEntityID);
117 if (isEmpty(configMap)) {
131 Set<String> stringAttributes = new HashSet<>(configMap.size());
132 Set<String> binaryAttributes = new HashSet<>(configMap.size());
133 for (String localAttribute : configMap.values()) {
156 for (Map.Entry<String, String> entry : configMap.entrySet()) {
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/
H A DIdRepoListener.java67 private Map configMap = null; field in class:IdRepoListener
74 // To serialize and deserialize configMap
110 String org = (String) configMap.get("realm");
156 String org = (String) configMap.get("realm");
206 return configMap;
213 configMap = cMap;
228 String realm = (String) configMap.get("realm");
229 String pluginName = (String) configMap.get("plugin-name");
279 // If configMap is null, then this is a "remote" cache update
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/
H A DIdRepoListener.java67 private Map configMap = null; field in class:IdRepoListener
74 // To serialize and deserialize configMap
110 String org = (String) configMap.get("realm");
156 String org = (String) configMap.get("realm");
206 return configMap;
213 configMap = cMap;
228 String realm = (String) configMap.get("realm");
229 String pluginName = (String) configMap.get("plugin-name");
279 // If configMap is null, then this is a "remote" cache update

Completed in 52 milliseconds

1234