Searched refs:attributeSchemas (Results 1 - 25 of 44) sorted by relevance

12

/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMServiceProfileModelImpl.java159 Set attributeSchemas = xmlBuilder.getAttributeSchemas();
160 Map values = new HashMap(attributeSchemas.size() *2);
161 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ) {
196 Set attributeSchemas = xmlBuilder.getAttributeSchemas();
201 for (Iterator i = attributeSchemas.iterator(); i.hasNext() && !found; ){
227 Set attributeSchemas = new HashSet();
228 attributeSchemas.addAll(xmlBuilder.getAttributeSchemas());
229 addMoreAttributeSchemasForModification(attributeSchemas);
233 for (Iterator i = attributeSchemas.iterator(); i.hasNext(); ) {
289 * @param attributeSchemas Se
291 addMoreAttributeSchemasForModification(Set attributeSchemas) argument
[all...]
H A DAMAdminUtils.java593 Set attributeSchemas = getAttributeSchemas(serviceName, schemaType,
597 for (Iterator i = attributeSchemas.iterator();
614 Set attributeSchemas = null;
628 attributeSchemas = ss.getAttributeSchemas();
637 return (attributeSchemas != null) ?
638 attributeSchemas : Collections.EMPTY_SET;
661 Set attributeSchemas = getAttributeSchemas(serviceName, schemaType);
663 if ((attributeSchemas != null) && !attributeSchemas.isEmpty()) {
664 displayable = new HashSet(attributeSchemas
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMServiceProfileModelImpl.java159 Set attributeSchemas = xmlBuilder.getAttributeSchemas();
160 Map values = new HashMap(attributeSchemas.size() *2);
161 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ) {
196 Set attributeSchemas = xmlBuilder.getAttributeSchemas();
201 for (Iterator i = attributeSchemas.iterator(); i.hasNext() && !found; ){
227 Set attributeSchemas = new HashSet();
228 attributeSchemas.addAll(xmlBuilder.getAttributeSchemas());
229 addMoreAttributeSchemasForModification(attributeSchemas);
233 for (Iterator i = attributeSchemas.iterator(); i.hasNext(); ) {
289 * @param attributeSchemas Se
291 addMoreAttributeSchemasForModification(Set attributeSchemas) argument
[all...]
H A DAMAdminUtils.java593 Set attributeSchemas = getAttributeSchemas(serviceName, schemaType,
597 for (Iterator i = attributeSchemas.iterator();
614 Set attributeSchemas = null;
628 attributeSchemas = ss.getAttributeSchemas();
637 return (attributeSchemas != null) ?
638 attributeSchemas : Collections.EMPTY_SET;
661 Set attributeSchemas = getAttributeSchemas(serviceName, schemaType);
663 if ((attributeSchemas != null) && !attributeSchemas.isEmpty()) {
664 displayable = new HashSet(attributeSchemas
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/federation/model/
H A DFSSAMLServiceModelImpl.java56 private Map attributeSchemas = new HashMap(); field in class:FSSAMLServiceModelImpl
79 Map labels = new HashMap(attributeSchemas.size() *2);
80 for (Iterator i = attributeSchemas.keySet().iterator(); i.hasNext();) {
82 AttributeSchema as = (AttributeSchema)attributeSchemas.get(name);
100 Map helps = new HashMap(attributeSchemas.size() *2);
101 for (Iterator iter = attributeSchemas.keySet().iterator();
105 AttributeSchema as = (AttributeSchema)attributeSchemas.get(name);
124 Map values = new HashMap(attributeSchemas.size() *2);
125 for (Iterator i = attributeSchemas.keySet().iterator(); i.hasNext();) {
127 AttributeSchema as = (AttributeSchema)attributeSchemas
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/federation/model/
H A DFSSAMLServiceModelImpl.java56 private Map attributeSchemas = new HashMap(); field in class:FSSAMLServiceModelImpl
79 Map labels = new HashMap(attributeSchemas.size() *2);
80 for (Iterator i = attributeSchemas.keySet().iterator(); i.hasNext();) {
82 AttributeSchema as = (AttributeSchema)attributeSchemas.get(name);
100 Map helps = new HashMap(attributeSchemas.size() *2);
101 for (Iterator iter = attributeSchemas.keySet().iterator();
105 AttributeSchema as = (AttributeSchema)attributeSchemas.get(name);
124 Map values = new HashMap(attributeSchemas.size() *2);
125 for (Iterator i = attributeSchemas.keySet().iterator(); i.hasNext();) {
127 AttributeSchema as = (AttributeSchema)attributeSchemas
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DSMDiscoveryServiceModelImpl.java166 protected void addMoreAttributeSchemasForModification(Set attributeSchemas){ argument
167 super.addMoreAttributeSchemasForModification(attributeSchemas);
172 attributeSchemas.add(global.getAttributeSchema(
H A DSubConfigModelImpl.java174 Set attributeSchemas = xmlBuilder.getAttributeSchemas();
175 if ((attributeSchemas != null) && !attributeSchemas.isEmpty()) {
176 names = new HashSet(attributeSchemas.size() *2);
177 for (Iterator i = attributeSchemas.iterator(); i.hasNext(); ) {
H A DMAPCreateDeviceModelImpl.java122 Set attributeSchemas,
126 createDeviceDefaultValues = new HashMap(attributeSchemas.size());
128 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ) {
177 Set attributeSchemas = new HashSet(names.size());
181 attributeSchemas.add(as);
184 return attributeSchemas;
121 getCreateDeviceDefaultValues( Set attributeSchemas, String clientType, String style ) argument
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DSMDiscoveryServiceModelImpl.java166 protected void addMoreAttributeSchemasForModification(Set attributeSchemas){ argument
167 super.addMoreAttributeSchemasForModification(attributeSchemas);
172 attributeSchemas.add(global.getAttributeSchema(
H A DSubConfigModelImpl.java174 Set attributeSchemas = xmlBuilder.getAttributeSchemas();
175 if ((attributeSchemas != null) && !attributeSchemas.isEmpty()) {
176 names = new HashSet(attributeSchemas.size() *2);
177 for (Iterator i = attributeSchemas.iterator(); i.hasNext(); ) {
H A DMAPCreateDeviceModelImpl.java122 Set attributeSchemas,
126 createDeviceDefaultValues = new HashMap(attributeSchemas.size());
128 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ) {
177 Set attributeSchemas = new HashSet(names.size());
181 attributeSchemas.add(as);
184 return attributeSchemas;
121 getCreateDeviceDefaultValues( Set attributeSchemas, String clientType, String style ) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DBackwardCompSupport.java107 public void beforeDisplay(String idType, Set attributeSchemas) { argument
110 beforeDisplayUser(attributeSchemas);
115 private void beforeDisplayUser(Set attributeSchemas) { argument
116 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ) {
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DCLIUtil.java151 Set attributeSchemas = schema.getAttributeSchemas();
153 for (Iterator i = attributeSchemas.iterator(); i.hasNext(); ) {
190 Set attributeSchemas = ss.getAttributeSchemas();
192 for (Iterator i = attributeSchemas.iterator(); i.hasNext(); ) {
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DCLIUtil.java151 Set attributeSchemas = schema.getAttributeSchemas();
153 for (Iterator i = attributeSchemas.iterator(); i.hasNext(); ) {
190 Set attributeSchemas = ss.getAttributeSchemas();
192 for (Iterator i = attributeSchemas.iterator(); i.hasNext(); ) {
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DBackwardCompSupport.java107 public void beforeDisplay(String idType, Set attributeSchemas) { argument
110 beforeDisplayUser(attributeSchemas);
115 private void beforeDisplayUser(Set attributeSchemas) { argument
116 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ) {
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsConsoleServiceNameFilter.java125 final Set<AttributeSchema> attributeSchemas = getAttributeSchemas(serviceSchemaManager, schemaType, null);
126 for (AttributeSchema attributeSchema : attributeSchemas) {
137 Set<AttributeSchema> attributeSchemas = null;
147 attributeSchemas = ss.getAttributeSchemas();
154 return attributeSchemas != null ? attributeSchemas : Collections.<AttributeSchema>emptySet();
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/idm/model/
H A DEntitiesModelImpl.java255 Set attributeSchemas = getAttributeSchemas(
259 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ){
330 Set attributeSchemas = getAttributeSchemas(idType, agentType,
335 serviceName, this, attributeSchemas);
336 cacheAttributeValidators(attributeSchemas);
383 private void cacheAttributeValidators(Set attributeSchemas) { argument
384 if ((attributeSchemas != null) && !attributeSchemas.isEmpty()) {
385 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext();) {
421 Set attributeSchemas
969 beforeDisplay(String idType, Set attributeSchemas) argument
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/idm/model/
H A DEntitiesModelImpl.java255 Set attributeSchemas = getAttributeSchemas(
259 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ){
330 Set attributeSchemas = getAttributeSchemas(idType, agentType,
335 serviceName, this, attributeSchemas);
336 cacheAttributeValidators(attributeSchemas);
383 private void cacheAttributeValidators(Set attributeSchemas) { argument
384 if ((attributeSchemas != null) && !attributeSchemas.isEmpty()) {
385 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext();) {
421 Set attributeSchemas
969 beforeDisplay(String idType, Set attributeSchemas) argument
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/property/
H A DPropertyXMLBuilder.java146 Set attributeSchemas
148 this(serviceName, model, attributeSchemas, null);
156 * @param attributeSchemas List of attributeSchema.
163 Set attributeSchemas,
181 mapTypeToAttributeSchema = new HashMap(attributeSchemas.size() *2);
182 mapTypeToAttributeSchema.put(NULL_TYPE, attributeSchemas);
197 Set attributeSchemas
204 mapTypeToAttributeSchema = new HashMap(attributeSchemas.size()*2);
205 mapTypeToAttributeSchema.put(NULL_TYPE, attributeSchemas);
160 PropertyXMLBuilder( String serviceName, AMModel model, Set attributeSchemas, SchemaType schemaType ) argument
H A DPropertyXMLBuilderBase.java198 * @param attributeSchemas Set of Attribute Schemas.
200 public static void filterHiddenAttributes(Set attributeSchemas) { argument
201 removeAttributeSchemaWithoutI18nKey(attributeSchemas);
202 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ) {
222 * @param attributeSchemas Set of Attribute Schemas.
224 public static void removeAttributeSchemaWithoutI18nKey(Set attributeSchemas) argument
226 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ) {
239 * @param attributeSchemas Set of Attribute Schemas.
241 public static void filterAttributes(Set attributeSchemas, String a[]) { argument
242 removeAttributeSchemaWithoutI18nKey(attributeSchemas);
1086 buildSchemaTypeXML( String schemaTypeName, Set attributeSchemas, StringBuffer xml, AMModel model, ResourceBundle serviceBundle, Set readonly ) argument
1097 buildSchemaTypeXML( String schemaTypeName, Set attributeSchemas, StringBuffer xml, AMModel model, ResourceBundle serviceBundle, Set readonly, boolean section, boolean addSubSection ) argument
1148 buildSchemaTypeXML( String schemaTypeName, Set<AttributeSchema> attributeSchemas, StringBuffer xml, AMModel model, ResourceBundle serviceBundle, Set readonly, List<String> sectionList ) argument
1170 getAttributeSchemaForSection(Set<AttributeSchema> attributeSchemas, List<String> sectionList) argument
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/property/
H A DPropertyXMLBuilder.java146 Set attributeSchemas
148 this(serviceName, model, attributeSchemas, null);
156 * @param attributeSchemas List of attributeSchema.
163 Set attributeSchemas,
181 mapTypeToAttributeSchema = new HashMap(attributeSchemas.size() *2);
182 mapTypeToAttributeSchema.put(NULL_TYPE, attributeSchemas);
197 Set attributeSchemas
204 mapTypeToAttributeSchema = new HashMap(attributeSchemas.size()*2);
205 mapTypeToAttributeSchema.put(NULL_TYPE, attributeSchemas);
160 PropertyXMLBuilder( String serviceName, AMModel model, Set attributeSchemas, SchemaType schemaType ) argument
H A DPropertyXMLBuilderBase.java198 * @param attributeSchemas Set of Attribute Schemas.
200 public static void filterHiddenAttributes(Set attributeSchemas) { argument
201 removeAttributeSchemaWithoutI18nKey(attributeSchemas);
202 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ) {
222 * @param attributeSchemas Set of Attribute Schemas.
224 public static void removeAttributeSchemaWithoutI18nKey(Set attributeSchemas) argument
226 for (Iterator iter = attributeSchemas.iterator(); iter.hasNext(); ) {
239 * @param attributeSchemas Set of Attribute Schemas.
241 public static void filterAttributes(Set attributeSchemas, String a[]) { argument
242 removeAttributeSchemaWithoutI18nKey(attributeSchemas);
1086 buildSchemaTypeXML( String schemaTypeName, Set attributeSchemas, StringBuffer xml, AMModel model, ResourceBundle serviceBundle, Set readonly ) argument
1097 buildSchemaTypeXML( String schemaTypeName, Set attributeSchemas, StringBuffer xml, AMModel model, ResourceBundle serviceBundle, Set readonly, boolean section, boolean addSubSection ) argument
1148 buildSchemaTypeXML( String schemaTypeName, Set<AttributeSchema> attributeSchemas, StringBuffer xml, AMModel model, ResourceBundle serviceBundle, Set readonly, List<String> sectionList ) argument
1170 getAttributeSchemaForSection(Set<AttributeSchema> attributeSchemas, List<String> sectionList) argument
[all...]
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/idrepo/
H A DGetAttributes.java159 Set attributeSchemas = Collections.EMPTY_SET;
167 attributeSchemas = svcSchema.getAttributeSchemas();
170 for (Iterator i = attributeSchemas.iterator(); i.hasNext(); ) {
177 return attributeSchemas;
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/idrepo/
H A DGetAttributes.java159 Set attributeSchemas = Collections.EMPTY_SET;
167 attributeSchemas = svcSchema.getAttributeSchemas();
170 for (Iterator i = attributeSchemas.iterator(); i.hasNext(); ) {
177 return attributeSchemas;

Completed in 112 milliseconds

12