Searched refs:attributes (Results 251 - 275 of 1439) sorted by relevance

<<11121314151617181920>>

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultSPAttributeMapper.java49 * <code>SPAttributeMapper</code> for mapping the assertion attributes
50 * to local attributes configured in the provider configuration.
66 * @param attributes list <code>Attribute</code>objects.
76 List attributes,
83 if(attributes == null || attributes.size() == 0) {
101 for(Iterator iter = attributes.iterator(); iter.hasNext();) {
75 getAttributes( List attributes, String userID, String hostEntityID, String remoteEntityID, String realm ) argument
/forgerock/openam-v13/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DResult.java76 "attributes",
90 protected List<Attributes> attributes; field in class:Result
191 * Gets the value of the attributes property.
197 * This is why there is not a <CODE>set</CODE> method for the attributes property.
213 if (attributes == null) {
214 attributes = new ArrayList<Attributes>();
216 return this.attributes;
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DInstanceConfigMarshaller.java41 * @param attributes the attributes retrieved from the SMS
45 T fromMapAttributes(Map<String, Set<String>> attributes) throws STSPublishException; argument
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DIHttpServletRequestHelper.java40 public abstract void initialize(String dateFormatString, Map attributes, argument
/forgerock/openam-v13/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/mapping/
H A DAccountProvider.java35 * Implementations of this interface provide the means to search for and create users given a map of attributes.
43 * Search for a user given a map of attributes.
45 * @param attr The set of attributes, which should be treated as 'or' statements.
51 * Provisions a user with the specified attributes.
53 * @param attributes The user attributes.
57 AMIdentity provisionUser(AMIdentityRepository idrepo, Map<String, Set<String>> attributes) throws AuthLoginException; argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DAttributeQueryRequest.cs71 /// <param name="attributes">
75 ServiceProvider serviceProvider, NameValueCollection parameters, List<SamlAttribute> attributes)
108 else if (attributes == null || attributes.Count == 0)
135 foreach (SamlAttribute attr in attributes)
74 AttributeQueryRequest(IdentityProvider identityProvider, ServiceProvider serviceProvider, NameValueCollection parameters, List<SamlAttribute> attributes) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/tasks/
H A DTaskScheduleInformation.java45 * Adds utility specific attributes to <code>attributes</code> for
48 * @param attributes that will be added to the task backend
50 void addTaskAttributes(List<RawAttribute> attributes); argument
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/models/
H A DForm.js74 * Filters out empty, specified attributes from an object
76 * @param {Array} attributes Attribute names to filter
79 function filterEmptyAttributes (object, attributes) {
81 if (_.contains(attributes, key)) {
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/helpers/
H A DAuditUpgradeHelper.java33 * The constructor for {@code AuditUpgradeHelper} is used to register the attributes which will be upgraded.
36 attributes.add("auditEnabled");
H A DRestApiUpgradeHelper.java33 * The constructor for RestApiUpgradeHelper is used to register the attributes which will be upgraded.
36 attributes.add(DEFAULT_VERSION_ATTRIBUTE);
54 * schema attributes. This might change in the future in which case it should return the modified attribute.
H A DScriptedAuthHelper.java26 * This upgrade helper allows the modification of attributes for the Scripted Auth module.
35 * The constructor for ScriptedAuthHelper is used to register the attributes which will be upgraded.
40 attributes.addAll(attributeNames);
H A DSessionServiceHelper.java78 attributes.add(SFO_USER_ATTR);
79 attributes.add(SFO_PWD_ATTR);
80 attributes.add(SFO_CPL_MAX_WAIT_TIME_ATTR);
81 attributes.add(SFO_JDBC_URL_ATTR);
117 //Since at the moment all the upgradable attributes should have empty i18nKey, it's safe to return null.
118 //This way these attributes won't show up on the upgrade report.
H A DUmaProviderUpgradeHelper.java38 attributes.addAll(attributeNames);
/forgerock/openidm-v4/openidm-authnfilter/src/main/java/org/forgerock/openidm/auth/modules/
H A DTrustedRequestAttributeAuthModule.java99 final JsonValue attributes = json(messageInfo.asContext(AttributesContext.class).getAttributes());
101 if (attributes.isDefined(authenticationIdAttribute)
102 && attributes.get(authenticationIdAttribute).isString()) {
103 final String authenticationId = attributes.get(authenticationIdAttribute).asString();
/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/commons/
H A DOperationOptionInfoHelper.java57 private final Set<AttributeInfoHelper> attributes; field in class:OperationOptionInfoHelper
61 attributes = Collections.emptySet();
73 attributes = new HashSet<AttributeInfoHelper>(properties.size());
75 attributes.add(new AttributeInfoHelper(entry, true, properties.get(entry)));
78 attributes = Collections.emptySet();
100 attributes = new HashSet<AttributeInfoHelper>(globalOption.getAttributes());
105 attributes.add(new AttributeInfoHelper(entry, true, properties.get(entry)));
132 return attributes;
149 for (AttributeInfoHelper helper : attributes) {
154 // Ensure that the default attributes ar
[all...]
/forgerock/openam/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DResult.java76 "attributes",
90 protected List<Attributes> attributes; field in class:Result
191 * Gets the value of the attributes property.
197 * This is why there is not a <CODE>set</CODE> method for the attributes property.
213 if (attributes == null) {
214 attributes = new ArrayList<Attributes>();
216 return this.attributes;
/forgerock/openam/openam-authentication/openam-auth-common/src/main/java/org/forgerock/openam/authentication/modules/common/mapping/
H A DAccountProvider.java35 * Implementations of this interface provide the means to search for and create users given a map of attributes.
43 * Search for a user given a map of attributes.
45 * @param attr The set of attributes, which should be treated as 'or' statements.
51 * Provisions a user with the specified attributes.
53 * @param attributes The user attributes.
57 AMIdentity provisionUser(AMIdentityRepository idrepo, Map<String, Set<String>> attributes) throws AuthLoginException; argument
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/config/
H A DConsoleConfigHandlerImpl.java42 * to map attributes to bean properties.
106 Map<String, Set<String>> attributes = attributeCache.get(cacheKey);
108 if (attributes == null) {
109 attributes = configProvider.getAttributes(source, realm);
110 Map<String, Set<String>> existingAttributes = attributeCache.putIfAbsent(cacheKey, attributes);
113 attributes = existingAttributes;
119 collatedAttributes.putAll(attributes);
125 private void populateAnnotatedMethods(ConsoleConfigBuilder<?> builder, Map<String, Set<String>> attributes) argument
143 if (!attributes.containsKey(attributeKey)) {
147 Set<String> values = attributes
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Saml2/
H A DAttributeQueryRequest.cs71 /// <param name="attributes">
75 ServiceProvider serviceProvider, NameValueCollection parameters, List<SamlAttribute> attributes)
108 else if (attributes == null || attributes.Count == 0)
135 foreach (SamlAttribute attr in attributes)
74 AttributeQueryRequest(IdentityProvider identityProvider, ServiceProvider serviceProvider, NameValueCollection parameters, List<SamlAttribute> attributes) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/plugins/
H A DDefaultSPAttributeMapper.java48 * <code>SPAttributeMapper</code> for mapping the assertion attributes
49 * to local attributes configured in the provider configuration.
64 * @param attributes list <code>Attribute</code>objects.
75 List<Attribute> attributes,
82 if (attributes == null || attributes.isEmpty()) {
108 for (Attribute attribute : attributes) {
123 // this is the including all attributes as it is case
74 getAttributes( List<Attribute> attributes, String userID, String hostEntityID, String remoteEntityID, String realm ) argument
H A DSPAttributeMapper.java43 * SAML <code>Attribute</code>s to the local user attributes.
45 * the configured map for the corresponding SAML attributes and
47 * The locally mapped attributes returned by the implementation of
65 * @param attributes list of SAML <code>Attribute</code>s.
76 List<Attribute> attributes,
75 getAttributes( List<Attribute> attributes, String userID, String hostEntityID, String remoteEntityID, String realm ) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/
H A DAttributeQuery.java73 * @param attributes the new <code>Attribute</code> objects.
77 public void setAttributes(List attributes) throws SAML2Exception; argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/plugins/
H A DDefaultSPAttributeMapper.java49 * <code>SPAttributeMapper</code> for mapping the assertion attributes
50 * to local attributes configured in the provider configuration.
66 * @param attributes list <code>Attribute</code>objects.
76 List attributes,
83 if(attributes == null || attributes.size() == 0) {
101 for(Iterator iter = attributes.iterator(); iter.hasNext();) {
75 getAttributes( List attributes, String userID, String hostEntityID, String remoteEntityID, String realm ) argument
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DInstanceConfigMarshaller.java41 * @param attributes the attributes retrieved from the SMS
45 T fromMapAttributes(Map<String, Set<String>> attributes) throws STSPublishException; argument
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/helpers/
H A DAuditUpgradeHelper.java33 * The constructor for {@code AuditUpgradeHelper} is used to register the attributes which will be upgraded.
36 attributes.add("auditEnabled");

Completed in 357 milliseconds

<<11121314151617181920>>