Searched defs:Map (Results 51 - 75 of 173) sorted by relevance

1234567

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DOpenSSOPrivilege.java55 import java.util.Map;
92 final Map<String, Set<String>> environment,
127 String resourceName, Set<String> actionNames, Map<String, Set<String>> environment,
168 Map<String, Set<String>> attributes = getAttributes(adminSubject, realm, subject, resourceName, environment);
193 private void squashMaps(Map<String, Set<String>> firstMap, Map<String, Set<String>> secondMap) {
199 for (Map.Entry<String, Set<String>> entry : secondMap.entrySet()) {
84 evaluate( final Subject adminSubject, final String realm, final Subject subject, final String applicationName, final String normalisedResourceName, final String requestedResourceName, final Set<String> actionNames, final Map<String, Set<String>> environment, final boolean recursive, final Object context ) argument
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/log/handlers/syslog/
H A DSyslogFormatter.java33 import java.util.Map;
121 Map<String, String> info = (record instanceof ILogRecord ? ((ILogRecord) record).getLogInfoMap()
170 private String getStructuredData(final Map<String, String> info) { argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/admin/ads/util/
H A DServerLoader.java30 import java.util.Map;
61 private Map<ServerProperty,Object> serverProperties;
92 public ServerLoader(Map<ServerProperty,Object> serverProperties,
303 private String getLdapUrl(Map<ServerProperty,Object> serverProperties)
321 private String getStartTlsLdapUrl(Map<ServerProperty,Object> serverProperties)
339 private String getLdapsUrl(Map<ServerProperty,Object> serverProperties)
359 Map<ServerProperty,Object> serverProperties)
380 private boolean isLdapEnabled(Map<ServerProperty, Object> serverProperties)
385 private boolean isLdapsEnabled(Map<ServerProperty, Object> serverProperties)
390 private boolean isStartTlsEnabled(Map<ServerPropert
358 getAdminConnectorUrl( Map<ServerProperty,Object> serverProperties) argument
408 getHostNameForLdapUrl( Map<ServerProperty,Object> serverProperties) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DRebuildIndexPanel.java39 import java.util.Map;
82 private final Map<String, SortedSet<AbstractIndexDescriptor>> hmIndexes = new HashMap<>();
353 private void filterIndexes(final Map<String, SortedSet<AbstractIndexDescriptor>> hmIndexes) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DCompressedSchema.java39 import java.util.Map;
40 import java.util.Map.Entry;
72 private final Map<Entry<AttributeType, Set<String>>, Integer> adEncodeMap = new ConcurrentHashMap<>();
74 private final List<Map<ObjectClass, String>> ocDecodeMap = new CopyOnWriteArrayList<>();
76 private final Map<Map<ObjectClass, String>, Integer> ocEncodeMap = new ConcurrentHashMap<>();
154 public final Map<ObjectClass, String> decodeObjectClasses(
164 final Map<ObjectClass, String> ocMap = ocDecodeMap.get(id);
253 final Map<ObjectClass, String> objectClasses) throws DirectoryException
355 return new Iterator<Map
252 encodeObjectClasses(final ByteStringBuilder builder, final Map<ObjectClass, String> objectClasses) argument
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DCollectionUtils.java33 import java.util.Map;
127 * Creates a new Map which contains the entries of the provided map but with keys and values exchanged.
138 public static <K, V> Map<V, K> invertMap(final Map<K, V> map) { argument
141 final Map<V, K> newMap = new HashMap<V, K>(map.size());
143 for (Map.Entry<K, V> entry : map.entrySet()) {
171 public static <K, I, M, E extends Exception> Map<K, M> transformMap(final Map<K, I> map, argument
174 final Map<K, M> newMap = new HashMap<K, M>(map.size());
176 for (Map
[all...]
/forgerock/openam-v13/openam-tools/openam-diagnostics/openam-diagnostics-plugins/src/main/java/com/sun/identity/diagnostic/plugin/services/server/
H A DSAMLConfigValidator.java49 import java.util.Map;
105 Map<String, String> defaultProp = loadPropertiesToMap(
108 Map<String, String> samlMap = detectChangedSAMLProperties(
128 private Map detectChangedSAMLProperties(Map defProp) {
129 Map <String, String> changeMap = new HashMap();
131 Map defFileProp = loadPropertiesToMap(DEFAULT_SERVER_PROP);
159 Map<String,String> samlMap,
160 Map<String,String> defProp
326 private Map loadKeyTabl
158 validateEntries( Map<String,String> samlMap, Map<String,String> defProp ) argument
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DHOTPParams.java35 import java.util.Map;
49 private final Map<?, ?> config;
57 String carrierLdapAttributeName, String emailLdapAttributeName, String codeDelivery, Map<?, ?> config,
67 final Map<?, ?> config, final int codeLength, final String messageSubject,
108 public Map<?, ?> getConfig() {
64 HOTPParams(final String gatewaySMSImplClass, final long codeValidityDuration, final String telephoneLdapAttributeName, final String carrierLdapAttributeName, final String emailLdapAttributeName, final String codeDelivery, final Map<?, ?> config, final int codeLength, final String messageSubject, final String messageContent, final String fromAddressAttributeName, final Set<String> userSearchAttributes) argument
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/entitlement/
H A DApplicationPrivilegeBase.java56 import java.util.Map;
82 private static Map<String, ApplicationPrivilege.PossibleAction>
85 private static Map<ApplicationPrivilege.PossibleAction, String>
162 protected Map<String, Set<String>> getApplicationResourcesMap(
187 Map<String, Set<String>> map = new HashMap<String, Set<String>>();
244 protected Map<String, Set<String>> getApplicationToResources(
246 Map<String, Set<String>> applToRes = new HashMap<String, Set<String>>();
254 protected Map<String, Set<String>> getSubjects(
256 Map<String, Set<String>> results = new HashMap<String, Set<String>>();
283 Map<Strin
282 removeFromMap( Map<String, Set<String>> map1, Map<String, Set<String>> map2 ) argument
299 mergeMap( Map<String, Set<String>> map1, Map<String, Set<String>> map2 ) argument
[all...]
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/
H A DJwtClaimSubject.java26 import java.util.Map;
38 private static final Map<String, Set<String>> NO_ADVICE = Collections.emptyMap();
68 public Map<String, Set<String>> getSearchIndexAttributes() {
80 final String resourceName, final Map<String, Set<String>> environment)
79 evaluate(final String realm, final SubjectAttributesManager mgr, final Subject subject, final String resourceName, final Map<String, Set<String>> environment) argument
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DApplicationV1Filter.java28 import java.util.Map;
120 final Map<String, Boolean> actions = jsonValue.get(ACTIONS).asMap(Boolean.class);
170 final Map<String, Boolean> actions, Set<String> resources,
249 final Map<String, Boolean> actions = jsonValue.get(ACTIONS).asMap(Boolean.class);
409 Function<Map.Entry<String, Boolean>, QueryFilter<SmsAttribute>, NeverThrowsException> {
412 public QueryFilter<SmsAttribute> apply(Map.Entry<String, Boolean> value) {
169 findOrCreateResourceType( final Map<String, Boolean> actions, Set<String> resources, final Context context, CreateRequest request) argument
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DGenericSQLQueryFilterVisitor.java32 import java.util.Map;
46 class GenericSQLQueryFilterVisitor extends AbstractSQLQueryFilterVisitor<Clause, Map<String, Object>> {
126 public Clause visitValueAssertion(Map<String, Object> objects, String operand, JsonPointer field, Object valueAssertion) {
160 public Clause visitAndFilter(final Map<String, Object> parameters, List<QueryFilter<JsonPointer>> subfilters) { argument
174 public Clause visitOrFilter(final Map<String, Object> parameters, List<QueryFilter<JsonPointer>> subfilters) { argument
188 public Clause visitPresentFilter(Map<String, Object> objects, JsonPointer field) {
208 public Clause visitBooleanLiteralFilter(Map<String, Object> parameters, boolean value) {
216 public Clause visitNotFilter(Map<String, Object> parameters, QueryFilter<JsonPointer> subFilter) {
224 public Clause visitContainsFilter(Map<String, Object> parameters, JsonPointer field, Object valueAssertion) {
232 public Clause visitEqualsFilter(Map<Strin
[all...]
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/authz/
H A DCrestPrivilegeAuthzModule.java19 import java.util.Map;
64 @Named("CrestPrivilegeDefinitions") Map<String, PrivilegeDefinition> actionToDefinition,
63 CrestPrivilegeAuthzModule(DelegationEvaluator evaluator, @Named(�) Map<String, PrivilegeDefinition> actionToDefinition, DelegationPermissionFactory permissionFactory, CoreWrapper coreWrapper, SSOTokenManager ssoTokenManager) argument
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DCollectionUtils.java29 import java.util.Map;
128 * Creates a new Map which contains the entries of the provided map but with keys and values exchanged.
139 public static <K, V> Map<V, K> invertMap(final Map<K, V> map) { argument
142 final Map<V, K> newMap = new HashMap<V, K>(map.size());
144 for (Map.Entry<K, V> entry : map.entrySet()) {
172 public static <K, I, M, E extends Exception> Map<K, M> transformMap(final Map<K, I> map, argument
175 final Map<K, M> newMap = new HashMap<K, M>(map.size());
177 for (Map
[all...]
/forgerock/openam/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DHOTPParams.java35 import java.util.Map;
49 private final Map<?, ?> config;
57 String carrierLdapAttributeName, String emailLdapAttributeName, String codeDelivery, Map<?, ?> config,
67 final Map<?, ?> config, final int codeLength, final String messageSubject,
108 public Map<?, ?> getConfig() {
64 HOTPParams(final String gatewaySMSImplClass, final long codeValidityDuration, final String telephoneLdapAttributeName, final String carrierLdapAttributeName, final String emailLdapAttributeName, final String codeDelivery, final Map<?, ?> config, final int codeLength, final String messageSubject, final String messageContent, final String fromAddressAttributeName, final Set<String> userSearchAttributes) argument
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/user/model/
H A DUMUserPasswordResetOptionsModelImpl.java58 import java.util.Map;
77 Map map
92 private Map getQuestions(String realmName) {
93 Map mapQuestions = null;
172 Map mapData = new HashMap(4);
320 Map localizedQuestions = getQuestions(realmName);
326 Map userAnswers = parseUserQuestionAnswers(
362 Map<String, UMUserPasswordResetOptionsData> userAnswers) {
371 private Map parseUserQuestionAnswers(
374 Map localizedQuestion
361 getPersonalQuestionAnswer( Map<String, UMUserPasswordResetOptionsData> userAnswers) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DOpenSSOPrivilege.java56 import java.util.Map;
93 final Map<String, Set<String>> environment,
128 String resourceName, Set<String> actionNames, Map<String, Set<String>> environment,
169 Map<String, Set<String>> attributes = getAttributes(adminSubject, realm, subject, resourceName, environment);
194 private void squashMaps(Map<String, Set<String>> firstMap, Map<String, Set<String>> secondMap) {
200 for (Map.Entry<String, Set<String>> entry : secondMap.entrySet()) {
85 evaluate( final Subject adminSubject, final String realm, final Subject subject, final String applicationName, final String normalisedResourceName, final String requestedResourceName, final Set<String> actionNames, final Map<String, Set<String>> environment, final boolean recursive, final Object context ) argument
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/log/handlers/syslog/
H A DSyslogFormatter.java33 import java.util.Map;
121 Map<String, String> info = (record instanceof ILogRecord ? ((ILogRecord) record).getLogInfoMap()
170 private String getStructuredData(final Map<String, String> info) { argument
/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/
H A DJwtClaimSubject.java31 import java.util.Map;
43 private static final Map<String, Set<String>> NO_ADVICE = Collections.emptyMap();
73 public Map<String, Set<String>> getSearchIndexAttributes() {
85 final String resourceName, final Map<String, Set<String>> environment)
84 evaluate(final String realm, final SubjectAttributesManager mgr, final Subject subject, final String resourceName, final Map<String, Set<String>> environment) argument
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DApplicationV1Filter.java30 import java.util.Map;
123 final Map<String, Boolean> actions = jsonValue.get(ACTIONS).asMap(Boolean.class);
173 final Map<String, Boolean> actions, Collection<String> resources,
252 final Map<String, Boolean> actions = jsonValue.get(ACTIONS).asMap(Boolean.class);
412 Function<Map.Entry<String, Boolean>, QueryFilter<SmsAttribute>, NeverThrowsException> {
415 public QueryFilter<SmsAttribute> apply(Map.Entry<String, Boolean> value) {
172 findOrCreateResourceType( final Map<String, Boolean> actions, Collection<String> resources, final Context context, CreateRequest request) argument
/forgerock/opendj2/src/server/org/opends/server/replication/protocol/
H A DAddMsg.java31 import java.util.Map;
96 Map<ObjectClass, String> objectClasses,
97 Map<AttributeType,List<Attribute>> userAttributes,
98 Map<AttributeType,List<Attribute>> operationalAttributes)
222 Map<ObjectClass, String> objectClasses,
223 Map<AttributeType, List<Attribute>> userAttributes,
224 Map<AttributeType, List<Attribute>> operationalAttributes)
255 private void encodeAttributes(Map<AttributeType, List<Attribute>> attributes,
221 encodeAttributes( Map<ObjectClass, String> objectClasses, Map<AttributeType, List<Attribute>> userAttributes, Map<AttributeType, List<Attribute>> operationalAttributes) argument
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DComputeBestServerTest.java33 import java.util.Map;
1793 Map<Integer, ReplicationServerInfo> servers, int currentRsServerId,
1792 testComputeBestServerForWeight( Map<Integer, ReplicationServerInfo> servers, int currentRsServerId, int localServerId, String winnerUrl) argument
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/service/
H A DReplicationBrokerTest.java81 private Map<Integer, ReplicationServerInfo> newMap(ReplicationServerInfo... infos)
87 final Map<Integer, ReplicationServerInfo> map =
102 Map<Integer, ReplicationServerInfo> rsInfos,
109 Map<Integer, ReplicationServerInfo> rsInfos,
118 private ReplicationServerInfo find(Map<Integer, ReplicationServerInfo> rsInfos, RSInfo rsInfo)
131 Map<Integer, DSInfo> replicaInfos, List<RSInfo> rsInfos, int dsServerId, int rsServerId,
132 Set<String> rsUrls, Map<Integer, ReplicationServerInfo> previousRSs)
147 private Map<Integer, DSInfo> newMap(DSInfo... dsInfos)
149 final Map<Integer, DSInfo> results = new HashMap<Integer, DSInfo>();
214 final Map<Intege
101 assertContainsRSWithDSs( Map<Integer, ReplicationServerInfo> rsInfos, ReplicationServerInfo rsInfo, Integer... connectedDSs) argument
108 assertContainsRSWithDSs( Map<Integer, ReplicationServerInfo> rsInfos, ReplicationServerInfo rsInfo, Set<Integer> connectedDSs) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/workflowelement/localbackend/
H A DLocalBackendAddOperation.java32 import java.util.Map;
86 private Map<ObjectClass, String> objectClasses;
89 private Map<AttributeType, List<Attribute>> operationalAttributes;
92 private Map<AttributeType, List<Attribute>> userAttributes;
557 Map<AttributeType, List<Attribute>> attributes) throws DirectoryException
668 Map<AttributeType, List<Attribute>> attributes, AttributeType t,
737 Map<ObjectClass, String> objectClasses = getObjectClasses();
1025 Map<AttributeType, List<Attribute>> attributes) throws DirectoryException
556 checkHasReadOnlyAttributes( Map<AttributeType, List<Attribute>> attributes) argument
667 addRDNAttributesIfNecessary( Map<AttributeType, List<Attribute>> attributes, AttributeType t, AttributeValue v, String n) argument
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/service/
H A DReplicationBrokerTest.java81 private Map<Integer, ReplicationServerInfo> newMap(ReplicationServerInfo... infos)
87 final Map<Integer, ReplicationServerInfo> map =
102 Map<Integer, ReplicationServerInfo> rsInfos,
109 Map<Integer, ReplicationServerInfo> rsInfos,
118 private ReplicationServerInfo find(Map<Integer, ReplicationServerInfo> rsInfos, RSInfo rsInfo)
131 Map<Integer, DSInfo> replicaInfos, List<RSInfo> rsInfos, int dsServerId, int rsServerId,
132 Set<String> rsUrls, Map<Integer, ReplicationServerInfo> previousRSs)
147 private Map<Integer, DSInfo> newMap(DSInfo... dsInfos)
149 final Map<Integer, DSInfo> results = new HashMap<Integer, DSInfo>();
214 final Map<Intege
101 assertContainsRSWithDSs( Map<Integer, ReplicationServerInfo> rsInfos, ReplicationServerInfo rsInfo, Integer... connectedDSs) argument
108 assertContainsRSWithDSs( Map<Integer, ReplicationServerInfo> rsInfos, ReplicationServerInfo rsInfo, Set<Integer> connectedDSs) argument
[all...]

Completed in 152 milliseconds

1234567