Searched defs:attributeValues (Results 26 - 50 of 79) sorted by relevance

1234

/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DRawModification.java163 * @param attributeValues The set of attribute values for this
171 ArrayList<ByteString> attributeValues)
174 RawAttribute.create(attributeType, attributeValues);
169 create(ModificationType modificationType, String attributeType, ArrayList<ByteString> attributeValues) argument
H A DRDN.java71 private AttributeValue[] attributeValues; field in class:RDN
100 attributeValues = new AttributeValue[] { attributeValue };
124 attributeValues = new AttributeValue[] { attributeValue };
143 * @param attributeValues The set of values for this RDN. It must
149 List<AttributeValue> attributeValues)
153 this.attributeValues = new AttributeValue[attributeValues.size()];
157 attributeValues.toArray(this.attributeValues);
176 * @param attributeValues Th
147 RDN(List<AttributeType> attributeTypes, List<String> attributeNames, List<AttributeValue> attributeValues) argument
180 RDN(AttributeType[] attributeTypes, String[] attributeNames, AttributeValue[] attributeValues) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/
H A DPatternDN.java1089 * @param attributeValues The list whose elements should be set to
1101 ArrayList<ByteString> attributeValues)
1199 attributeValues.add(ByteString.wrap(bytes));
1263 attributeValues.add(ByteString.valueOf(valueString.toString()));
1282 attributeValues.add(ByteString.valueOf(valueString.toString()));
1380 attributeValues.add(ByteString.valueOf(valueString.toString()));
1413 attributeValues.add(ByteString.valueOf(valueString.toString()));
1100 parseValuePattern(String dnString, int pos, ArrayList<ByteString> attributeValues) argument
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DRawModification.java162 * @param attributeValues The set of attribute values for this
170 ArrayList<ByteString> attributeValues)
173 RawAttribute.create(attributeType, attributeValues);
168 create(ModificationType modificationType, String attributeType, ArrayList<ByteString> attributeValues) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/
H A DPatternDN.java1090 * @param attributeValues The list whose elements should be set to
1102 ArrayList<ByteString> attributeValues)
1200 attributeValues.add(ByteString.wrap(bytes));
1264 attributeValues.add(ByteString.valueOf(valueString.toString()));
1283 attributeValues.add(ByteString.valueOf(valueString.toString()));
1381 attributeValues.add(ByteString.valueOf(valueString.toString()));
1414 attributeValues.add(ByteString.valueOf(valueString.toString()));
1101 parseValuePattern(String dnString, int pos, ArrayList<ByteString> attributeValues) argument
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DMAPDeviceProfileModelImpl.java203 Map attributeValues = new HashMap(attributeNames.size() *2);
214 attributeValues = new HashMap(2);
215 attributeValues.put(attrName, values);
233 attributeValues.put(name, values);
239 return (attributeValues != null)
240 ? attributeValues : Collections.EMPTY_MAP;
247 * @param attributeValues Map of attribute name to set of attribute values.
250 public void modifyProfile(String clientType, Map attributeValues) argument
256 clientType, attributeValues.keySet());
257 Map values = new HashMap(attributeValues
[all...]
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DFormatUtils.java91 Map attributeValues,
94 Map map = new HashMap(attributeValues.size() *2);
97 for (Iterator i = attributeValues.entrySet().iterator(); i.hasNext(); ){
111 Map attributeValues
114 if (attributeValues != null) {
116 for (Iterator i = attributeValues.keySet().iterator(); i.hasNext();
120 Set values = (Set)attributeValues.get(name);
89 printAttributeValues( String template, Map attributeValues, Set passwords ) argument
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/org/forgerock/openam/cli/entitlement/
H A DApplicationTypeImpl.java76 Map<String, Set<String>> attributeValues) throws CLIException {
78 Map<String, Boolean> actions = getActions(attributeValues);
84 protected Map<String, Boolean> getActions(Map<String, Set<String>> attributeValues) { argument
86 Set<String> actions = attributeValues.get(ATTR_ACTIONS);
109 protected Class getClassAttribute(String attributeName, Map<String, Set<String>> attributeValues) { argument
113 Set<String> classes = attributeValues.get(attributeName);
75 setApplicationTypeAttributes(ApplicationType applType, Map<String, Set<String>> attributeValues) argument
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/realm/model/
H A DRMRealmModel.java118 * @param attributeValues Map of attribute values to set of values.
121 void setAttributeValues(String name, Map attributeValues) argument
H A DRMRealmModelImpl.java332 * @param attributeValues Map of attribute name to set of values.
335 public void setAttributeValues(String name, Map attributeValues) argument
342 Map map = mapAttributeValuesToServiceName(attributeValues);
357 private Map mapAttributeValuesToServiceName(Map attributeValues) { argument
360 if ((attributeValues != null) && !attributeValues.isEmpty()) {
363 for (Iterator i = attributeValues.keySet().iterator();
377 map.put(attributeName, attributeValues.get(attrName));
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DRawModification.java159 * @param attributeValues The set of attribute values for this
167 ArrayList<ByteString> attributeValues)
170 RawAttribute.create(attributeType, attributeValues);
165 create(ModificationType modificationType, String attributeType, ArrayList<ByteString> attributeValues) argument
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DFormatUtils.java91 Map attributeValues,
94 Map map = new HashMap(attributeValues.size() *2);
97 for (Iterator i = attributeValues.entrySet().iterator(); i.hasNext(); ){
111 Map attributeValues
114 if (attributeValues != null) {
116 for (Iterator i = attributeValues.keySet().iterator(); i.hasNext();
120 Set values = (Set)attributeValues.get(name);
89 printAttributeValues( String template, Map attributeValues, Set passwords ) argument
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/org/forgerock/openam/cli/entitlement/
H A DApplicationTypeImpl.java76 Map<String, Set<String>> attributeValues) throws CLIException {
78 Map<String, Boolean> actions = getActions(attributeValues);
84 protected Map<String, Boolean> getActions(Map<String, Set<String>> attributeValues) { argument
86 Set<String> actions = attributeValues.get(ATTR_ACTIONS);
109 protected Class getClassAttribute(String attributeName, Map<String, Set<String>> attributeValues) { argument
113 Set<String> classes = attributeValues.get(attributeName);
75 setApplicationTypeAttributes(ApplicationType applType, Map<String, Set<String>> attributeValues) argument
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/realm/model/
H A DRMRealmModel.java118 * @param attributeValues Map of attribute values to set of values.
121 void setAttributeValues(String name, Map attributeValues) argument
H A DRMRealmModelImpl.java332 * @param attributeValues Map of attribute name to set of values.
335 public void setAttributeValues(String name, Map attributeValues) argument
342 Map map = mapAttributeValuesToServiceName(attributeValues);
357 private Map mapAttributeValuesToServiceName(Map attributeValues) { argument
360 if ((attributeValues != null) && !attributeValues.isEmpty()) {
363 for (Iterator i = attributeValues.keySet().iterator();
377 map.put(attributeName, attributeValues.get(attrName));
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DMAPDeviceProfileModelImpl.java203 Map attributeValues = new HashMap(attributeNames.size() *2);
214 attributeValues = new HashMap(2);
215 attributeValues.put(attrName, values);
233 attributeValues.put(name, values);
239 return (attributeValues != null)
240 ? attributeValues : Collections.EMPTY_MAP;
247 * @param attributeValues Map of attribute name to set of attribute values.
250 public void modifyProfile(String clientType, Map attributeValues) argument
256 clientType, attributeValues.keySet());
257 Map values = new HashMap(attributeValues
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/webservices/
H A DWSAuthNServicesViewBean.java130 Map attributeValues = (Map)removePageSessionAttribute(
132 if (attributeValues != null) {
134 ps.setAttributeValues(attributeValues, getModel());
136 prePopulateHandlersTable(attributeValues);
139 private void prePopulateHandlersTable(Map attributeValues) { argument
142 if (attributeValues != null) {
143 handlers = (Set)attributeValues.get(
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/
H A DPatternDN.java1068 * @param attributeValues The list whose elements should be set to
1080 ArrayList<ByteString> attributeValues)
1178 attributeValues.add(ByteString.wrap(bytes));
1236 attributeValues.add(ByteString.valueOfUtf8(valueString));
1255 attributeValues.add(ByteString.valueOfUtf8(valueString));
1353 attributeValues.add(ByteString.valueOfUtf8(valueString));
1386 attributeValues.add(ByteString.valueOfUtf8(valueString));
1079 parseValuePattern(String dnString, int pos, ArrayList<ByteString> attributeValues) argument
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/
H A DSCPolicyViewBean.java134 Map attributeValues = (Map)getPageSessionAttribute(
137 prePopulateResourceComparatorTable(attributeValues);
140 private void prePopulateResourceComparatorTable(Map attributeValues) { argument
143 if (attributeValues != null) {
144 resourceComp = (Set)attributeValues.get(
/forgerock/openam/openam-oauth2/src/test/java/org/forgerock/openam/oauth2/
H A DAgentClientRegistrationTest.java212 private void setUpAgentWithAttribute(String attributeName, String... attributeValues) argument
215 .willReturn(new HashSet<>(Arrays.asList(attributeValues)));
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/
H A DSCPolicyViewBean.java134 Map attributeValues = (Map)getPageSessionAttribute(
137 prePopulateResourceComparatorTable(attributeValues);
140 private void prePopulateResourceComparatorTable(Map attributeValues) { argument
143 if (attributeValues != null) {
144 resourceComp = (Set)attributeValues.get(
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/webservices/
H A DWSAuthNServicesViewBean.java130 Map attributeValues = (Map)removePageSessionAttribute(
132 if (attributeValues != null) {
134 ps.setAttributeValues(attributeValues, getModel());
136 prePopulateHandlersTable(attributeValues);
139 private void prePopulateHandlersTable(Map attributeValues) { argument
142 if (attributeValues != null) {
143 handlers = (Set)attributeValues.get(
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DRDN.java71 private AttributeValue[] attributeValues; field in class:RDN
100 attributeValues = new AttributeValue[] { attributeValue };
124 attributeValues = new AttributeValue[] { attributeValue };
143 * @param attributeValues The set of values for this RDN. It must
149 List<AttributeValue> attributeValues)
153 this.attributeValues = new AttributeValue[attributeValues.size()];
157 attributeValues.toArray(this.attributeValues);
176 * @param attributeValues Th
147 RDN(List<AttributeType> attributeTypes, List<String> attributeNames, List<AttributeValue> attributeValues) argument
180 RDN(AttributeType[] attributeTypes, String[] attributeNames, AttributeValue[] attributeValues) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/types/
H A DRDN.java62 private AttributeValue[] attributeValues; field in class:RDN
91 attributeValues = new AttributeValue[] { attributeValue };
115 attributeValues = new AttributeValue[] { attributeValue };
134 * @param attributeValues The set of values for this RDN. It must
140 List<AttributeValue> attributeValues)
144 this.attributeValues = new AttributeValue[attributeValues.size()];
148 attributeValues.toArray(this.attributeValues);
167 * @param attributeValues Th
138 RDN(List<AttributeType> attributeTypes, List<String> attributeNames, List<AttributeValue> attributeValues) argument
171 RDN(AttributeType[] attributeTypes, String[] attributeNames, AttributeValue[] attributeValues) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DRDN.java71 private AttributeValue[] attributeValues; field in class:RDN
100 attributeValues = new AttributeValue[] { attributeValue };
124 attributeValues = new AttributeValue[] { attributeValue };
143 * @param attributeValues The set of values for this RDN. It must
149 List<AttributeValue> attributeValues)
153 this.attributeValues = new AttributeValue[attributeValues.size()];
157 attributeValues.toArray(this.attributeValues);
176 * @param attributeValues Th
147 RDN(List<AttributeType> attributeTypes, List<String> attributeNames, List<AttributeValue> attributeValues) argument
180 RDN(AttributeType[] attributeTypes, String[] attributeNames, AttributeValue[] attributeValues) argument
[all...]

Completed in 118 milliseconds

1234