/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/ |
H A D | ChoiceValues.java | 82 return (attributeSchema.getName()); 111 attributeSchema = as; 129 AttributeSchemaImpl attributeSchema; field in class:ChoiceValues
|
H A D | DefaultValues.java | 78 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 D | ChoiceValues.java | 82 return (attributeSchema.getName()); 111 attributeSchema = as; 129 AttributeSchemaImpl attributeSchema; field in class:ChoiceValues
|
H A D | DefaultValues.java | 79 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 D | PossibleLocales.java | 102 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 D | PossibleLocales.java | 102 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 D | SubConfigPropertyXMLBuilder.java | 141 Set attributeSchema = (Set)mapTypeToAttributeSchema.get( 143 if ((attributeSchema != null) && !attributeSchema.isEmpty()) { 146 buildSchemaTypeXML(display, attributeSchema, xml, model,
|
H A D | PropertyXMLBuilder.java | 156 * @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 D | AgentPropertyXMLBuilder.java | 143 Set attributeSchema = (Set)mapTypeToAttributeSchema.get( 147 buildSchemaTypeXML(display, attributeSchema, xml,
|
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/property/ |
H A D | SubConfigPropertyXMLBuilder.java | 141 Set attributeSchema = (Set)mapTypeToAttributeSchema.get( 143 if ((attributeSchema != null) && !attributeSchema.isEmpty()) { 146 buildSchemaTypeXML(display, attributeSchema, xml, model,
|
H A D | PropertyXMLBuilder.java | 156 * @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 D | AgentPropertyXMLBuilder.java | 143 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 D | SmsJsonConverterTest.java | 156 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 D | SmsJsonConverterTest.java | 156 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 D | SmsJsonConverter.java | 93 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 D | SmsJsonConverter.java | 96 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 D | SmsConsoleServiceNameFilter.java | 126 for (AttributeSchema attributeSchema : attributeSchemas) { 127 if (!StringUtils.isBlank(attributeSchema.getI18NKey())) {
|
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/ |
H A D | UpgradeAuditServiceStep.java | 126 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 D | ClientResource.java | 281 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 D | ClientResource.java | 282 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 D | AgentConfiguration.java | 1506 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 D | AgentConfiguration.java | 1519 Set attributeSchema = getAgentAttributeSchemas(agentType); 1520 for (Iterator i = attributeSchema.iterator(); i.hasNext(); ) {
|