Searched refs:attrValue (Results 1 - 25 of 287) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DNameIDTypeImpl.java183 String attrValue = element.getAttribute(NAME_QUALIFIER_ATTR);
184 if (attrValue != null) {
185 setNameQualifier(attrValue);
188 attrValue = element.getAttribute(SP_NAME_QUALIFIER_ATTR);
189 if (attrValue != null) {
190 setSPNameQualifier(attrValue);
193 attrValue = element.getAttribute(FORMAT_ATTR);
194 if (attrValue != null) {
195 setFormat(attrValue);
198 attrValue
[all...]
H A DBaseIDImpl.java114 String attrValue = element.getAttribute(NAME_QUALIFIER_ATTR);
115 if (attrValue != null) {
116 setNameQualifier(attrValue);
119 attrValue = element.getAttribute(SP_NAME_QUALIFIER_ATTR);
120 if (attrValue != null) {
121 setSPNameQualifier(attrValue);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DNameIDTypeImpl.java183 String attrValue = element.getAttribute(NAME_QUALIFIER_ATTR);
184 if (attrValue != null) {
185 setNameQualifier(attrValue);
188 attrValue = element.getAttribute(SP_NAME_QUALIFIER_ATTR);
189 if (attrValue != null) {
190 setSPNameQualifier(attrValue);
193 attrValue = element.getAttribute(FORMAT_ATTR);
194 if (attrValue != null) {
195 setFormat(attrValue);
198 attrValue
[all...]
H A DBaseIDImpl.java114 String attrValue = element.getAttribute(NAME_QUALIFIER_ATTR);
115 if (attrValue != null) {
116 setNameQualifier(attrValue);
119 attrValue = element.getAttribute(SP_NAME_QUALIFIER_ATTR);
120 if (attrValue != null) {
121 setSPNameQualifier(attrValue);
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/util/
H A DAgentRemoteConfigUtils.java219 String attrValue) {
237 if (attrValue != null) {
238 attrValue = attrValue.trim();
242 if ((attrValue == null) || (attrValue.length() == 0)
243 || ((idx1 = attrValue.indexOf("=")) <= 0)) {
246 idx2 = attrValue.indexOf("[");
250 attrName = attrValue.substring(0, idx2);
251 attrValue
217 setProp(Properties prop, String attrName, String attrValue) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/util/
H A DSearchFilter.java140 String attrValue = Long.toString(longValue) + "=" + attribute.getAttributeName();
144 return "(!(" + attribute.getLdapAttribute() + ">=|" + attrValue + "))";
146 return "(" + attribute.getLdapAttribute() + "<=" + attrValue + ")";
148 return "(!(" + attribute.getLdapAttribute() + "<=" + attrValue + "))";
150 return "(" + attribute.getLdapAttribute() + ">=|" + attrValue + ")";
153 return "(" + attribute.getLdapAttribute() + "=" + attrValue + ")";
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/util/
H A DSearchFilter.java140 String attrValue = Long.toString(longValue) + "=" + attribute.getAttributeName();
144 return "(!(" + attribute.getLdapAttribute() + ">=|" + attrValue + "))";
146 return "(" + attribute.getLdapAttribute() + "<=" + attrValue + ")";
148 return "(!(" + attribute.getLdapAttribute() + "<=" + attrValue + "))";
150 return "(" + attribute.getLdapAttribute() + ">=|" + attrValue + ")";
153 return "(" + attribute.getLdapAttribute() + "=" + attrValue + ")";
/forgerock/opendj-b2.6/tests/staf-tests/shared/python/
H A Dobjects.py43 def addAttr(self, attrType, attrValue):
44 self.listAttr.append('%s:%s' % (attrType, attrValue))
/forgerock/opendj2/tests/staf-tests/shared/python/
H A Dobjects.py42 def addAttr(self, attrType, attrValue):
43 self.listAttr.append('%s:%s' % (attrType, attrValue))
/forgerock/opendj2.6.2/tests/staf-tests/shared/python/
H A Dobjects.py43 def addAttr(self, attrType, attrValue):
44 self.listAttr.append('%s:%s' % (attrType, attrValue))
/forgerock/opendj2-jel-hg/tests/staf-tests/shared/python/
H A Dobjects.py43 def addAttr(self, attrType, attrValue):
44 self.listAttr.append('%s:%s' % (attrType, attrValue))
/forgerock/opendj2-hg/tests/staf-tests/shared/python/
H A Dobjects.py42 def addAttr(self, attrType, attrValue):
43 self.listAttr.append('%s:%s' % (attrType, attrValue))
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/
H A DDynamicRequestViewBean.java83 String attrValue = CollectionHelper.getMapAttr(getAttributeValueMap(), request.getParameter("attrname"));
84 attrValue = "[Empty]".equals(attrValue) ? "" : attrValue;
85 handleDynamicLinkRequest(MessageFormat.format(request.getParameter("url"), getCurrentRealmEncoded(), attrValue));
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/
H A DDynamicRequestViewBean.java83 String attrValue = CollectionHelper.getMapAttr(getAttributeValueMap(), request.getParameter("attrname"));
84 attrValue = "[Empty]".equals(attrValue) ? "" : attrValue;
85 handleDynamicLinkRequest(MessageFormat.format(request.getParameter("url"), getCurrentRealmEncoded(), attrValue));
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/schema/
H A DFakeByteStringIndex.java65 for (ByteString attrValue : attrValues)
67 add(attrValue);
71 void add(ByteString attrValue) throws DecodeException argument
73 for (ByteString key : index(attrValue))
81 entries.add(attrValue);
85 private Collection<ByteString> index(ByteString attrValue) throws DecodeException argument
88 indexer.createKeys(Schema.getDefaultSchema(), attrValue, keys);
140 private String firstLine(ByteString attrValue) argument
142 return attrValue.toString().split("\\n")[0] + " ...";
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DStatusCodeImpl.java273 String attrValue = element.getAttribute(XACMLConstants.VALUE);
274 if ((attrValue == null) || (attrValue.length() == 0)) {
280 if (!XACMLSDKUtils.isValidStatusMessage(attrValue.trim())) {
285 this.value = attrValue;
326 attrValue = childElement.getAttribute(XACMLConstants.VALUE);
327 if ((attrValue == null) || (attrValue.length() == 0)) {
334 if (!XACMLSDKUtils.isValidStatusMessage(attrValue.trim())) {
339 this.minorCodeValue = attrValue;
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DStatusCodeImpl.java273 String attrValue = element.getAttribute(XACMLConstants.VALUE);
274 if ((attrValue == null) || (attrValue.length() == 0)) {
280 if (!XACMLSDKUtils.isValidStatusMessage(attrValue.trim())) {
285 this.value = attrValue;
326 attrValue = childElement.getAttribute(XACMLConstants.VALUE);
327 if ((attrValue == null) || (attrValue.length() == 0)) {
334 if (!XACMLSDKUtils.isValidStatusMessage(attrValue.trim())) {
339 this.minorCodeValue = attrValue;
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DAttributeValues.java216 AttributeValue attrValue = (AttributeValue) o;
220 attrValue.getNormalizedValue());
229 return value.equals(attrValue.getValue());
367 AttributeValue attrValue = (AttributeValue) o;
371 attrValue.getNormalizedValue());
380 return value.equals(attrValue.getValue());
/forgerock/opendj2/src/server/org/opends/server/types/
H A DAttributeValues.java215 AttributeValue attrValue = (AttributeValue) o;
219 attrValue.getNormalizedValue());
228 return value.equals(attrValue.getValue());
366 AttributeValue attrValue = (AttributeValue) o;
370 attrValue.getNormalizedValue());
379 return value.equals(attrValue.getValue());
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DAttributeValues.java216 AttributeValue attrValue = (AttributeValue) o;
220 attrValue.getNormalizedValue());
229 return value.equals(attrValue.getValue());
367 AttributeValue attrValue = (AttributeValue) o;
371 attrValue.getNormalizedValue());
380 return value.equals(attrValue.getValue());
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DAttributeValues.java216 AttributeValue attrValue = (AttributeValue) o;
219 return getNormalizedValue().equals(attrValue.getNormalizedValue());
228 return value.equals(attrValue.getValue());
359 AttributeValue attrValue = (AttributeValue) o;
362 return normalizedValue.equals(attrValue.getNormalizedValue());
371 return value.equals(attrValue.getValue());
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DAttributeValues.java215 AttributeValue attrValue = (AttributeValue) o;
219 attrValue.getNormalizedValue());
228 return value.equals(attrValue.getValue());
366 AttributeValue attrValue = (AttributeValue) o;
370 attrValue.getNormalizedValue());
379 return value.equals(attrValue.getValue());
/forgerock/openam-v13/openam-certs/src/main/java/com/sun/identity/security/cert/
H A DAMCertStore.java303 * @param attrValue
306 public static String setSearchFilter(String attrName, String attrValue) { argument
309 .append(attrValue).append(")").toString();
361 String attrValue = CertUtils.getAttributeValue(cert.getIssuerX500Principal(), attrName);
363 if (attrValue == null) {
367 return getCertificate(ldapParam, attrName, attrValue);
380 String attrValue = CertUtils.getAttributeValue(cert.getSubjectX500Principal(), attrName);
383 if (attrValue == null) {
388 debug.message("Certificate - cn substring: " + attrValue);
391 c = getCertificate(ldapParam, attrName, attrValue);
406 getCertificate( AMLDAPCertStoreParameters ldapParam, String attrName, String attrValue) argument
[all...]
/forgerock/openam/openam-certs/src/main/java/com/sun/identity/security/cert/
H A DAMCertStore.java303 * @param attrValue
306 public static String setSearchFilter(String attrName, String attrValue) { argument
309 .append(attrValue).append(")").toString();
361 String attrValue = CertUtils.getAttributeValue(cert.getIssuerX500Principal(), attrName);
363 if (attrValue == null) {
367 return getCertificate(ldapParam, attrName, attrValue);
380 String attrValue = CertUtils.getAttributeValue(cert.getSubjectX500Principal(), attrName);
383 if (attrValue == null) {
388 debug.message("Certificate - cn substring: " + attrValue);
391 c = getCertificate(ldapParam, attrName, attrValue);
406 getCertificate( AMLDAPCertStoreParameters ldapParam, String attrName, String attrValue) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/password/ui/model/
H A DPWResetQuestionModel.java68 * @param attrValue user attribute value
71 public String getPWQuestionTitleString(String attrValue); argument

Completed in 663 milliseconds

1234567891011>>