Searched refs:attributes (Results 426 - 450 of 1439) sorted by relevance

<<11121314151617181920>>

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/plugins/
H A DDefaultAccountMapper.java177 Map attributes = SAML2MetaUtils.getAttributes(config);
179 if(attributes == null || attributes.isEmpty()) {
188 List list = (List)attributes.get(attributeName);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultAccountMapper.java157 Map attributes = WSFederationMetaUtils.getAttributes(config);
159 if(attributes == null || attributes.isEmpty()) {
168 List list = (List)attributes.get(attributeName);
/forgerock/openam-v13/openam-oauth/src/main/java/com/sun/identity/oauth/service/
H A DEntityManager.java69 * @param attributes the attributes to construct the search query
74 Map<String, String> attributes);
73 searchEntity(String entityType, Map<String, String> attributes) argument
/forgerock/openam-v13/openam-coretoken/src/main/java/com/sun/identity/coretoken/spi/
H A DCoreTokenStore.java46 * @param attributes Attributes of the token to be created.
50 * attributes.
53 JSONObject attributes)
57 * Reads token attributes.
61 * @return JSON-encoded token attributes.
74 * attributes.
96 * @param newVals attributes to be updated.
98 * @throws JSONException if failed to parse the JSON-encoded attributes.
52 createToken(Subject subject, JSONObject attributes) argument
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DApplicationCacheAfterRealmChangeTest.java123 Map<String, Set<String>> attributes = new HashMap<String, Set<String>>();
126 attributes.put("sunOrganizationAliases", setAlias);
129 attributes.put("sunOrganizationStatus", setStatus);
131 ocm.setAttributes(IdConstants.REPO_SERVICE, attributes);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/internal/
H A DSearchRequest.java47 /** Use a LinkedHashSet to return the attributes in the same order as requested by the user. */
48 private final Set<String> attributes = new LinkedHashSet<>(); field in class:SearchRequest
83 attributes.add(Reject.checkNotNull(attributeDescription));
97 attributes.add(Reject.checkNotNull(attributeDescription));
105 * @return the attributes
109 return attributes;
344 sb.append(", attributes=").append(getAttributes());
/forgerock/openidm-v4/custom-scripted-connector-bundler/src/main/resources/
H A DScriptedCRESTConnector.template63 Uid uid, Set<Attribute> attributes, OperationOptions options) {
64 Binding b = super.createBinding(arguments, action, objectClass, uid, attributes, options);
H A DScriptedPoolableConnector.template62 Set<Attribute> attributes, OperationOptions options) {
63 Binding binding = super.createBinding(arguments, action, objectClass, uid, attributes, options);
H A DScriptedRESTConnector.template58 ObjectClass objectClass, Uid uid, Set<Attribute> attributes, OperationOptions options) {
59 Binding b = super.createBinding(arguments, action, objectClass, uid, attributes, options);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMEntityImpl.java87 public void removeAttributes(Set attributes) throws AMException, argument
89 super.removeAttributes(attributes);
93 public void setAttributes(Map attributes) throws AMException, SSOException { argument
94 super.setAttributes(attributes);
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
H A DFilteredRole.java66 * The attributes that are required for FilteredRole. Any creation template
67 * for FilteredRole should have these attributes.
163 * @param attributes
170 protected SearchResults getMembers(String[] attributes) throws UMSException argument
186 SearchScope.WHOLE_SUBTREE.intValue(), getFilter(), attributes, false, null);
193 * @param attributes
204 protected SearchResults getMembers(String[] attributes, String filter) argument
218 + " ) ", attributes, false, null);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entity/
H A DEntityObject.java76 * @param attributes
86 Map attributes) throws EntityException, SSOException {
89 entityLocation, attributes };
212 * @param attributes
219 Map attributes
223 entityLocation, attributes };
85 createEntity(String entityName, String entityType, Map attributes) argument
/forgerock/openam/openam-coretoken/src/main/java/com/sun/identity/coretoken/spi/
H A DCoreTokenStore.java46 * @param attributes Attributes of the token to be created.
50 * attributes.
53 JSONObject attributes)
57 * Reads token attributes.
61 * @return JSON-encoded token attributes.
74 * attributes.
96 * @param newVals attributes to be updated.
98 * @throws JSONException if failed to parse the JSON-encoded attributes.
52 createToken(Subject subject, JSONObject attributes) argument
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DApplicationCacheAfterRealmChangeTest.java122 Map<String, Set<String>> attributes = new HashMap<String, Set<String>>();
125 attributes.put("sunOrganizationAliases", setAlias);
128 attributes.put("sunOrganizationStatus", setStatus);
130 ocm.setAttributes(IdConstants.REPO_SERVICE, attributes);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/plugin/configuration/
H A DConfigurationInstance.java108 * @param attributes A set of attributes to be deleted from the Service
117 String configName, Set attributes)
116 deleteConfiguration(String realm, String configName, Set attributes) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/plugins/
H A DDefaultAccountMapper.java177 Map attributes = SAML2MetaUtils.getAttributes(config);
179 if(attributes == null || attributes.isEmpty()) {
188 List list = (List)attributes.get(attributeName);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultAccountMapper.java157 Map attributes = WSFederationMetaUtils.getAttributes(config);
159 if(attributes == null || attributes.isEmpty()) {
168 List list = (List)attributes.get(attributeName);
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/models/
H A DForm.js79 * Filters out empty, specified attributes from an object
81 * @param {Array} attributes Attribute names to filter
84 function filterEmptyAttributes (object, attributes) {
86 if (_.contains(attributes, key)) {
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/
H A DEditPolicyView.js32 "org/forgerock/openam/ui/admin/views/realms/authorization/policies/attributes/StaticResponseAttributesView",
33 "org/forgerock/openam/ui/admin/views/realms/authorization/policies/attributes/SubjectResponseAttributesView",
34 "org/forgerock/openam/ui/admin/views/realms/authorization/policies/attributes/CustomResponseAttributesView",
54 this.model.attributes.resourceAttributes = _.union(
108 this.data.entity = _.cloneDeep(this.model.attributes);
144 self.staticAttributes = _.where(self.model.attributes.resourceAttributes, { type: "Static" });
145 self.userAttributes = _.where(self.model.attributes.resourceAttributes, { type: "User" });
146 self.customAttributes = _.difference(self.model.attributes.resourceAttributes,
156 uuid: self.model.attributes.resourceTypeUuid
174 el: "[data-static-attributes]"
[all...]
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/helpers/
H A DAuthAuthenticatorOathHelper.java35 attributes.add(ISSUER_NAME);
H A DSAML2ConfigHelper.java27 * This upgrade helper allows the modification of attributes for the SAMLv2 config service.
34 * The constructor for SAML2ConfigHelper is used to register the attributes which will be upgraded.
37 attributes.add(CACHE_CLEANUP_INTERVAL);
H A DSessionServiceHelper.java73 attributes.add(STATELESS_SIGNING_ALGORITHM);
74 attributes.add(STATELESS_ENCRYPTION_TYPE);
75 attributes.add(STATELESS_ENCRYPTION_KEY);
76 attributes.add(STATELESS_COMPRESSION_TYPE);
111 //Since at the moment all the upgradable attributes should have empty i18nKey, it's safe to return null.
112 //This way these attributes won't show up on the upgrade report.
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/server/
H A DDbHandler.java526 ArrayList<Attribute> attributes = new ArrayList<Attribute>();
527 attributes.add(Attributes.create("replicationServer-database",
529 attributes.add(Attributes.create("domain-name", baseDn));
533 attributes.add(Attributes.create("first-change", firstChange
540 attributes.add(Attributes.create("last-change", lastChange
544 attributes.add(
546 attributes.add(
549 return attributes;
/forgerock/opendj2/src/server/org/opends/server/replication/server/changelog/file/
H A DFileReplicaDB.java270 final List<Attribute> attributes = new ArrayList<Attribute>();
271 create(attributes, "replicationServer-database",String.valueOf(serverId));
272 create(attributes, "domain-name", baseDN.toNormalizedString());
276 create(attributes, "first-change", encode(limits.oldestCSN));
280 create(attributes, "last-change", encode(limits.newestCSN));
282 return attributes;
285 private void create(final List<Attribute> attributes, final String name, final String value) argument
287 attributes.add(Attributes.create(name, value));
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/server/
H A DDbHandler.java526 ArrayList<Attribute> attributes = new ArrayList<Attribute>();
527 attributes.add(Attributes.create("replicationServer-database",
529 attributes.add(Attributes.create("domain-name", baseDn));
533 attributes.add(Attributes.create("first-change", firstChange
540 attributes.add(Attributes.create("last-change", lastChange
544 attributes.add(
546 attributes.add(
549 return attributes;

Completed in 145 milliseconds

<<11121314151617181920>>