Searched refs:UIType (Results 1 - 25 of 28) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DAttributeSchema.java151 public AttributeSchema.UIType getUIType() {
156 * Sets the <code>UIType</code> attribute.
162 * <code>UIType</code> to the attribute schema.
1097 * The class <code>UIType</code> defines the UI types of schema attributes
1104 public static class UIType extends Object { class in class:AttributeSchema
1110 public static final UIType RADIO = new UIType("radio");
1116 public static final UIType LINK = new UIType("link");
1122 public static final UIType BUTTO
1176 private UIType() { method in class:AttributeSchema.UIType
1179 private UIType(String type) { method in class:AttributeSchema.UIType
[all...]
H A DAttributeSchemaImpl.java68 private AttributeSchema.UIType uitype;
150 public AttributeSchema.UIType getUIType() {
528 Class attrClass = (AttributeSchema.UIType.LINK).getClass();
529 uitype = (AttributeSchema.UIType) (attrClass
531 .get(AttributeSchema.UIType.LINK));
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DAttributeSchema.java151 public AttributeSchema.UIType getUIType() {
156 * Sets the <code>UIType</code> attribute.
162 * <code>UIType</code> to the attribute schema.
1131 * The class <code>UIType</code> defines the UI types of schema attributes
1138 public static class UIType extends Object { class in class:AttributeSchema
1144 public static final UIType RADIO = new UIType("radio");
1150 public static final UIType LINK = new UIType("link");
1156 public static final UIType BUTTO
1210 private UIType() { method in class:AttributeSchema.UIType
1213 private UIType(String type) { method in class:AttributeSchema.UIType
[all...]
H A DAttributeSchemaImpl.java70 private AttributeSchema.UIType uitype;
156 public AttributeSchema.UIType getUIType() {
556 Class attrClass = (AttributeSchema.UIType.LINK).getClass();
557 uitype = (AttributeSchema.UIType) (attrClass
559 .get(AttributeSchema.UIType.LINK));
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMDisplayType.java164 AttributeSchema.UIType uiType = actionSchema.getUIType();
167 if (uiType == AttributeSchema.UIType.RADIO) {
169 } else if (uiType == AttributeSchema.UIType.LINK) {
171 } else if (uiType == AttributeSchema.UIType.BUTTON) {
173 } else if (uiType == AttributeSchema.UIType.NAME_VALUE_LIST) {
H A DAMServiceProfileModelImpl.java163 AttributeSchema.UIType uiType = as.getUIType();
166 (!uiType.equals(AttributeSchema.UIType.NAME_VALUE_LIST) &&
167 !uiType.equals(AttributeSchema.UIType.BUTTON) &&
168 !uiType.equals(AttributeSchema.UIType.LINK))
H A DAMAdminUtils.java817 AttributeSchema.UIType uiType = as.getUIType();
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMDisplayType.java164 AttributeSchema.UIType uiType = actionSchema.getUIType();
167 if (uiType == AttributeSchema.UIType.RADIO) {
169 } else if (uiType == AttributeSchema.UIType.LINK) {
171 } else if (uiType == AttributeSchema.UIType.BUTTON) {
173 } else if (uiType == AttributeSchema.UIType.NAME_VALUE_LIST) {
H A DAMServiceProfileModelImpl.java163 AttributeSchema.UIType uiType = as.getUIType();
166 (!uiType.equals(AttributeSchema.UIType.NAME_VALUE_LIST) &&
167 !uiType.equals(AttributeSchema.UIType.BUTTON) &&
168 !uiType.equals(AttributeSchema.UIType.LINK))
H A DAMAdminUtils.java817 AttributeSchema.UIType uiType = as.getUIType();
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMAttributeSchema.java262 AttributeSchema.UIType uitype = attrSchema.getUIType();
268 } else if (uitype.equals(AttributeSchema.UIType.RADIO)) {
270 } else if (uitype.equals(AttributeSchema.UIType.LINK)) {
272 } else if (uitype.equals(AttributeSchema.UIType.BUTTON)) {
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/helpers/
H A DAgentServiceHelper.java53 if (AttributeSchema.UIType.UNORDEREDLIST.equals(oldAttr.getUIType())) {
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMAttributeSchema.java262 AttributeSchema.UIType uitype = attrSchema.getUIType();
268 } else if (uitype.equals(AttributeSchema.UIType.RADIO)) {
270 } else if (uitype.equals(AttributeSchema.UIType.LINK)) {
272 } else if (uitype.equals(AttributeSchema.UIType.BUTTON)) {
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/helpers/
H A DAgentServiceHelper.java53 if (AttributeSchema.UIType.UNORDEREDLIST.equals(oldAttr.getUIType())) {
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/property/
H A DPropertyXMLBuilderBase.java36 import static com.sun.identity.sm.AttributeSchema.UIType.*;
93 mapUITypeToName.put(AttributeSchema.UIType.BUTTON, "button");
94 mapUITypeToName.put(AttributeSchema.UIType.LINK, "link");
95 mapUITypeToName.put(AttributeSchema.UIType.ADDREMOVELIST, "addremove");
96 mapUITypeToName.put(AttributeSchema.UIType.NAME_VALUE_LIST,
98 mapUITypeToName.put(AttributeSchema.UIType.RADIO, "radio");
99 mapUITypeToName.put(AttributeSchema.UIType.UNORDEREDLIST,
101 mapUITypeToName.put(AttributeSchema.UIType.ORDEREDLIST,
103 mapUITypeToName.put(AttributeSchema.UIType.MAPLIST, "maplist");
104 mapUITypeToName.put(AttributeSchema.UIType
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/property/
H A DPropertyXMLBuilderBase.java36 import static com.sun.identity.sm.AttributeSchema.UIType.*;
93 mapUITypeToName.put(AttributeSchema.UIType.BUTTON, "button");
94 mapUITypeToName.put(AttributeSchema.UIType.LINK, "link");
95 mapUITypeToName.put(AttributeSchema.UIType.ADDREMOVELIST, "addremove");
96 mapUITypeToName.put(AttributeSchema.UIType.NAME_VALUE_LIST,
98 mapUITypeToName.put(AttributeSchema.UIType.RADIO, "radio");
99 mapUITypeToName.put(AttributeSchema.UIType.UNORDEREDLIST,
101 mapUITypeToName.put(AttributeSchema.UIType.ORDEREDLIST,
103 mapUITypeToName.put(AttributeSchema.UIType.MAPLIST, "maplist");
104 mapUITypeToName.put(AttributeSchema.UIType
[all...]
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverterTest.java107 addAttributeSchema(ARRAY_VALUE_NAME, AttributeSchema.Syntax.STRING, AttributeSchema.UIType.UNORDEREDLIST,
109 addAttributeSchema(MAP_VALUE_NAME, AttributeSchema.Syntax.STRING, AttributeSchema.UIType.MAPLIST,
154 private void addAttributeSchema(String valueName, AttributeSchema.Syntax syntax, AttributeSchema.UIType
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverterTest.java107 addAttributeSchema(ARRAY_VALUE_NAME, AttributeSchema.Syntax.STRING, AttributeSchema.UIType.UNORDEREDLIST,
109 addAttributeSchema(MAP_VALUE_NAME, AttributeSchema.Syntax.STRING, AttributeSchema.UIType.MAPLIST,
154 private void addAttributeSchema(String valueName, AttributeSchema.Syntax syntax, AttributeSchema.UIType
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DClientResource.java288 AttributeSchema.UIType uiType = attributeSchema.getUIType();
289 if (uiType != null && (uiType.equals(AttributeSchema.UIType.UNORDEREDLIST) ||
290 uiType.equals(AttributeSchema.UIType.ORDEREDLIST))){
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverter.java237 private boolean isAMap(AttributeSchema.UIType type) {
238 return AttributeSchema.UIType.MAPLIST.equals(type)
239 || AttributeSchema.UIType.GLOBALMAPLIST.equals(type);
H A DSmsResourceProvider.java310 attribute.getUIType() == AttributeSchema.UIType.GLOBALMAPLIST ||
311 attribute.getUIType() == AttributeSchema.UIType.MAPLIST)) {
357 if (AttributeSchema.UIType.SCRIPTSELECT.equals(attribute.getUIType())) {
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/rest/
H A DClientResource.java289 AttributeSchema.UIType uiType = attributeSchema.getUIType();
290 if (uiType != null && (uiType.equals(AttributeSchema.UIType.UNORDEREDLIST) ||
291 uiType.equals(AttributeSchema.UIType.ORDEREDLIST))){
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsJsonConverter.java270 private boolean isAMap(AttributeSchema.UIType type) {
271 return AttributeSchema.UIType.MAPLIST.equals(type)
272 || AttributeSchema.UIType.GLOBALMAPLIST.equals(type);
H A DSmsResourceProvider.java568 attribute.getUIType() == AttributeSchema.UIType.GLOBALMAPLIST ||
569 attribute.getUIType() == AttributeSchema.UIType.MAPLIST)) {
616 if (AttributeSchema.UIType.SCRIPTSELECT.equals(attribute.getUIType())
617 || AttributeSchema.UIType.GLOBALSCRIPTSELECT.equals(attribute.getUIType())) {
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/policy/model/
H A DPolicyModelImpl.java472 AttributeSchema.UIType uiType = actionSchema.getUIType();
474 if ((uiType != null) && (uiType == AttributeSchema.UIType.RADIO)) {

Completed in 56 milliseconds

12