Searched refs:attrSchema (Results 1 - 25 of 46) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMAttributeSchema.java215 private AttributeSchema attrSchema; field in class:AMAttributeSchema
218 attrSchema = as;
227 return attrSchema.getName();
236 String type = attrSchema.getType().toString();
262 AttributeSchema.UIType uitype = attrSchema.getUIType();
286 String syntax = attrSchema.getSyntax().toString();
336 return attrSchema.getCosQualifier();
346 return attrSchema.getDefaultValues();
356 return attrSchema.getChoiceValues();
368 return attrSchema
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMAttributeSchema.java215 private AttributeSchema attrSchema; field in class:AMAttributeSchema
218 attrSchema = as;
227 return attrSchema.getName();
236 String type = attrSchema.getType().toString();
262 AttributeSchema.UIType uitype = attrSchema.getUIType();
286 String syntax = attrSchema.getSyntax().toString();
336 return attrSchema.getCosQualifier();
346 return attrSchema.getDefaultValues();
356 return attrSchema.getChoiceValues();
368 return attrSchema
[all...]
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/org/forgerock/openam/cli/schema/
H A DGetAttributeSchemaChoiceValues.java63 AttributeSchema attrSchema = ss.getAttributeSchema(attributeName);
65 if (attrSchema == null) {
78 getChoiceValues(attrSchema)));
81 private Map<String, String> getChoiceValues(AttributeSchema attrSchema) { argument
83 for (String value : attrSchema.getChoiceValues()) {
84 ret.put(attrSchema.getChoiceValueI18NKey(value), value);
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/org/forgerock/openam/cli/schema/
H A DGetAttributeSchemaChoiceValues.java63 AttributeSchema attrSchema = ss.getAttributeSchema(attributeName);
65 if (attrSchema == null) {
78 getChoiceValues(attrSchema)));
81 private Map<String, String> getChoiceValues(AttributeSchema attrSchema) { argument
83 for (String value : attrSchema.getChoiceValues()) {
84 ret.put(attrSchema.getChoiceValueI18NKey(value), value);
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/schema/
H A DSetAttributeSchemaChoiceValues.java97 AttributeSchema attrSchema = ss.getAttributeSchema(
100 if (attrSchema == null) {
109 addChoiceValues(attrSchema, attributeValues);
113 setChoiceValues(attrSchema, attributeValues);
141 AttributeSchema attrSchema,
149 attrSchema.addChoiceValue(value, i18nKey);
154 AttributeSchema attrSchema,
162 attrSchema.removeChoiceValue(value);
163 attrSchema.addChoiceValue(value, i18nKey);
140 addChoiceValues( AttributeSchema attrSchema, Map i18nKeyToValues ) argument
153 setChoiceValues( AttributeSchema attrSchema, Map i18nKeyToValues ) argument
H A DModifyAttributeSchemaAny.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setAny(any);
H A DModifyAttributeSchemaI18nKey.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setI18NKey(i18nkey);
H A DModifyAttributeSchemaPropertiesViewBeanURL.java78 AttributeSchema attrSchema = ss.getAttributeSchema(
81 if (attrSchema == null) {
90 attrSchema.setPropertiesViewBeanUR(url);
H A DModifyAttributeSchemaSyntax.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setSyntax(syntax);
H A DModifyAttributeSchemaType.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setType(type);
H A DModifyAttributeSchemaUIType.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setUIType(uitype);
H A DRemoveAttributeSchemaChoiceValues.java79 AttributeSchema attrSchema = ss.getAttributeSchema(attributeName);
81 if (attrSchema == null) {
90 attrSchema.removeChoiceValue(choiceValue);
H A DRemoveAttributeSchemaDefaultValues.java80 AttributeSchema attrSchema = ss.getAttributeSchema(
83 if (attrSchema == null) {
91 attrSchema.removeDefaultValue(defaultValue);
H A DSetAttributeSchemaBooleanValues.java86 AttributeSchema attrSchema = ss.getAttributeSchema(
89 if (attrSchema == null) {
96 attrSchema.setBooleanValues(trueValue, trueI18nKey, falseValue,
H A DSetAttributeSchemaEndRange.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setEndRange(range);
H A DSetAttributeSchemaStartRange.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setStartRange(range);
H A DSetAttributeSchemaValidator.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setValidator(validator);
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/schema/
H A DSetAttributeSchemaChoiceValues.java97 AttributeSchema attrSchema = ss.getAttributeSchema(
100 if (attrSchema == null) {
109 addChoiceValues(attrSchema, attributeValues);
113 setChoiceValues(attrSchema, attributeValues);
141 AttributeSchema attrSchema,
149 attrSchema.addChoiceValue(value, i18nKey);
154 AttributeSchema attrSchema,
162 attrSchema.removeChoiceValue(value);
163 attrSchema.addChoiceValue(value, i18nKey);
140 addChoiceValues( AttributeSchema attrSchema, Map i18nKeyToValues ) argument
153 setChoiceValues( AttributeSchema attrSchema, Map i18nKeyToValues ) argument
H A DModifyAttributeSchemaAny.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setAny(any);
H A DModifyAttributeSchemaI18nKey.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setI18NKey(i18nkey);
H A DModifyAttributeSchemaPropertiesViewBeanURL.java78 AttributeSchema attrSchema = ss.getAttributeSchema(
81 if (attrSchema == null) {
90 attrSchema.setPropertiesViewBeanUR(url);
H A DModifyAttributeSchemaSyntax.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setSyntax(syntax);
H A DModifyAttributeSchemaType.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setType(type);
H A DModifyAttributeSchemaUIType.java77 AttributeSchema attrSchema = ss.getAttributeSchema(
80 if (attrSchema == null) {
88 attrSchema.setUIType(uitype);
H A DRemoveAttributeSchemaChoiceValues.java79 AttributeSchema attrSchema = ss.getAttributeSchema(attributeName);
81 if (attrSchema == null) {
90 attrSchema.removeChoiceValue(choiceValue);

Completed in 31 milliseconds

12