Searched refs:attributeSchema (Results 1 - 22 of 22) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DChoiceValues.java82 return (attributeSchema.getName());
111 attributeSchema = as;
129 AttributeSchemaImpl attributeSchema; field in class:ChoiceValues
H A DDefaultValues.java78 return (attributeSchema.getName());
107 attributeSchema = as;
125 AttributeSchemaImpl attributeSchema; field in class:DefaultValues
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DChoiceValues.java82 return (attributeSchema.getName());
111 attributeSchema = as;
129 AttributeSchemaImpl attributeSchema; field in class:ChoiceValues
H A DDefaultValues.java79 return (attributeSchema.getName());
108 attributeSchema = as;
126 AttributeSchemaImpl attributeSchema; field in class:DefaultValues
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/admin/
H A DPossibleLocales.java102 AttributeSchema attributeSchema =
105 if (attributeSchema != null) {
106 values = attributeSchema.getDefaultValues();
151 AttributeSchema attributeSchema = null;
157 attributeSchema = schema.getAttributeSchema(
166 return attributeSchema;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/admin/
H A DPossibleLocales.java102 AttributeSchema attributeSchema =
105 if (attributeSchema != null) {
106 values = attributeSchema.getDefaultValues();
151 AttributeSchema attributeSchema = null;
157 attributeSchema = schema.getAttributeSchema(
166 return attributeSchema;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/property/
H A DSubConfigPropertyXMLBuilder.java141 Set attributeSchema = (Set)mapTypeToAttributeSchema.get(
143 if ((attributeSchema != null) && !attributeSchema.isEmpty()) {
146 buildSchemaTypeXML(display, attributeSchema, xml, model,
H A DPropertyXMLBuilder.java156 * @param attributeSchemas List of attributeSchema.
301 Set attributeSchema = (Set) mapTypeToAttributeSchema.get(NULL_TYPE);
302 if ((attributeSchema != null) && !attributeSchema.isEmpty()) {
312 buildSchemaTypeXML(display, attributeSchema, xml, model,
322 buildSchemaTypeXML(sectionName, attributeSchema, xml,
332 attributeSchema = (Set)mapTypeToAttributeSchema.get(type);
334 if ((attributeSchema != null) && !attributeSchema.isEmpty()) {
338 buildSchemaTypeXML(display, attributeSchema, xm
[all...]
H A DAgentPropertyXMLBuilder.java143 Set attributeSchema = (Set)mapTypeToAttributeSchema.get(
147 buildSchemaTypeXML(display, attributeSchema, xml,
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/property/
H A DSubConfigPropertyXMLBuilder.java141 Set attributeSchema = (Set)mapTypeToAttributeSchema.get(
143 if ((attributeSchema != null) && !attributeSchema.isEmpty()) {
146 buildSchemaTypeXML(display, attributeSchema, xml, model,
H A DPropertyXMLBuilder.java156 * @param attributeSchemas List of attributeSchema.
301 Set attributeSchema = (Set) mapTypeToAttributeSchema.get(NULL_TYPE);
302 if ((attributeSchema != null) && !attributeSchema.isEmpty()) {
312 buildSchemaTypeXML(display, attributeSchema, xml, model,
322 buildSchemaTypeXML(sectionName, attributeSchema, xml,
332 attributeSchema = (Set)mapTypeToAttributeSchema.get(type);
334 if ((attributeSchema != null) && !attributeSchema.isEmpty()) {
338 buildSchemaTypeXML(display, attributeSchema, xm
[all...]
H A DAgentPropertyXMLBuilder.java143 Set attributeSchema = (Set)mapTypeToAttributeSchema.get(
147 buildSchemaTypeXML(display, attributeSchema, xml,
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverterTest.java156 AttributeSchema attributeSchema = mock(AttributeSchema.class);
157 given(attributeSchema.getSyntax()).willReturn(syntax);
158 given(attributeSchema.getType()).willReturn(type);
159 given(attributeSchema.getUIType()).willReturn(uiType);
160 given(attributeSchema.getResourceName()).willReturn(resourceName);
161 given(attributeSchema.getI18NKey()).willReturn("I18NKey");
162 given(serviceSchema.getAttributeSchema(valueName)).willReturn(attributeSchema);
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverterTest.java156 AttributeSchema attributeSchema = mock(AttributeSchema.class);
157 given(attributeSchema.getSyntax()).willReturn(syntax);
158 given(attributeSchema.getType()).willReturn(type);
159 given(attributeSchema.getUIType()).willReturn(uiType);
160 given(attributeSchema.getResourceName()).willReturn(resourceName);
161 given(attributeSchema.getI18NKey()).willReturn("I18NKey");
162 given(serviceSchema.getAttributeSchema(valueName)).willReturn(attributeSchema);
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverter.java93 final AttributeSchema attributeSchema = this.schema.getAttributeSchema((String) attributeName);
94 final AttributeSchema.Syntax syntax = attributeSchema.getSyntax();
98 final String resourceName = attributeSchema.getResourceName();
182 AttributeSchema attributeSchema = schema.getAttributeSchema(attributeName);
188 AttributeSchema.Type type = attributeSchema.getType();
204 if (isAMap(attributeSchema.getUIType())) {
358 final AttributeSchema attributeSchema = schema.getAttributeSchema(attributeName);
359 return attributeSchema == null || StringUtils.isBlank(attributeSchema.getI18NKey()) || hiddenAttributeNames.contains
364 final AttributeSchema attributeSchema
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverter.java96 final AttributeSchema attributeSchema = this.schema.getAttributeSchema((String) attributeName);
97 final AttributeSchema.Syntax syntax = attributeSchema.getSyntax();
101 final String resourceName = attributeSchema.getResourceName();
213 AttributeSchema attributeSchema = schema.getAttributeSchema(attributeName);
219 AttributeSchema.Type type = attributeSchema.getType();
235 if (isAMap(attributeSchema.getUIType())) {
395 final AttributeSchema attributeSchema = schema.getAttributeSchema(attributeName);
396 return (attributeSchema != null && StringUtils.isBlank(attributeSchema.getI18NKey())) || attributeName.equals
401 final AttributeSchema attributeSchema
[all...]
H A DSmsConsoleServiceNameFilter.java126 for (AttributeSchema attributeSchema : attributeSchemas) {
127 if (!StringUtils.isBlank(attributeSchema.getI18NKey())) {
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeAuditServiceStep.java126 final Element attributeSchema = (Element) attributeSchemas.item(i);
127 if ((attributeSchema.hasAttribute("name")) && HOSTNAME_VALIDATOR.equals(attributeSchema.getAttribute("name"))) {
128 final NodeList hostnameSchema = attributeSchema.getElementsByTagName("DefaultValues");
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DClientResource.java281 AttributeSchema attributeSchema = serviceSchema.getAttributeSchema(value);
282 if (attributeSchema == null) {
288 AttributeSchema.UIType uiType = attributeSchema.getUIType();
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DClientResource.java282 AttributeSchema attributeSchema = serviceSchema.getAttributeSchema(value);
283 if (attributeSchema == null) {
289 AttributeSchema.UIType uiType = attributeSchema.getUIType();
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DAgentConfiguration.java1506 Set attributeSchema = getAgentAttributeSchemas(agentType);
1507 for (Iterator i = attributeSchema.iterator(); i.hasNext(); ) {
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/configuration/
H A DAgentConfiguration.java1519 Set attributeSchema = getAgentAttributeSchemas(agentType);
1520 for (Iterator i = attributeSchema.iterator(); i.hasNext(); ) {

Completed in 370 milliseconds