Searched defs:propertyNames (Results 1 - 25 of 78) sorted by relevance

1234

/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/policy/model/
H A DTimePolicyModelImpl.java42 private static List propertyNames = new ArrayList(); field in class:TimePolicyModelImpl
45 propertyNames.add("StartDate");
46 propertyNames.add("EndDate");
70 return propertyNames;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/policy/model/
H A DTimePolicyModelImpl.java42 private static List propertyNames = new ArrayList(); field in class:TimePolicyModelImpl
45 propertyNames.add("StartDate");
46 propertyNames.add("EndDate");
70 return propertyNames;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAMIdentityMembershipCondition.java75 private static List propertyNames = new ArrayList(1); field in class:AMIdentityMembershipCondition
78 propertyNames.add(Condition.AM_IDENTITY_NAME);
93 return (new ArrayList(propertyNames));
H A DAuthRoleCondition.java71 private static List propertyNames = new ArrayList(1); field in class:AuthRoleCondition
74 propertyNames.add(ROLE_NAME);
89 return (new ArrayList(propertyNames));
H A DAuthenticateToRealmCondition.java74 private static List propertyNames = new ArrayList(1); field in class:AuthenticateToRealmCondition
77 propertyNames.add(AUTHENTICATE_TO_REALM);
91 return (new ArrayList(propertyNames));
H A DAuthenticateToServiceCondition.java74 private static List propertyNames = new ArrayList(1); field in class:AuthenticateToServiceCondition
77 propertyNames.add(AUTHENTICATE_TO_SERVICE);
91 return (new ArrayList(propertyNames));
H A DPrivilegeCondition.java57 private static List propertyNames = new ArrayList(1); field in class:PrivilegeCondition
62 propertyNames.add(STATE);
71 return (new ArrayList(propertyNames));
H A DSessionPropertyCondition.java70 private List propertyNames = Collections.EMPTY_LIST; field in class:SessionPropertyCondition
82 propertyNames = new ArrayList();
93 return propertyNames;
H A DUserSelfCheckCondition.java77 private static List propertyNames; field in class:UserSelfCheckCondition
94 if (propertyNames == null) {
98 propertyNames = Collections.unmodifiableList(answer);
100 return (propertyNames);
H A DAuthLevelCondition.java79 private static List propertyNames = new ArrayList(1); field in class:AuthLevelCondition
82 propertyNames.add(AUTH_LEVEL);
96 return (new ArrayList(propertyNames));
H A DAuthSchemeCondition.java102 private static List propertyNames = new ArrayList(1); field in class:AuthSchemeCondition
105 propertyNames.add(AUTH_SCHEME);
106 propertyNames.add(APPLICATION_NAME);
107 propertyNames.add(APPLICATION_IDLE_TIMEOUT);
121 return (new ArrayList(propertyNames));
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DCaseInsensitiveProperties.java136 public Enumeration propertyNames() { method in class:CaseInsensitiveProperties
137 return new CaseInsensitiveEnumeration(super.propertyNames());
/forgerock/openam-v13/openam-distribution/src/main/amserver/samples/server/source/com/sun/identity/samples/policy/
H A DSampleCondition.java60 private List propertyNames; field in class:SampleCondition
67 propertyNames = new ArrayList();
68 propertyNames.add(USER_NAME_LENGTH);
79 return propertyNames;
H A DSampleResponseProvider.java79 private static List propertyNames = new ArrayList(1); field in class:SampleResponseProvider
85 propertyNames.add(ATTRIBUTE_NAME);
128 return propertyNames;
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DCaseInsensitiveProperties.java136 public Enumeration propertyNames() { method in class:CaseInsensitiveProperties
137 return new CaseInsensitiveEnumeration(super.propertyNames());
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAMIdentityMembershipCondition.java75 private static List propertyNames = new ArrayList(1); field in class:AMIdentityMembershipCondition
78 propertyNames.add(Condition.AM_IDENTITY_NAME);
93 return (new ArrayList(propertyNames));
H A DAuthRoleCondition.java71 private static List propertyNames = new ArrayList(1); field in class:AuthRoleCondition
74 propertyNames.add(ROLE_NAME);
89 return (new ArrayList(propertyNames));
H A DAuthenticateToRealmCondition.java74 private static List propertyNames = new ArrayList(1); field in class:AuthenticateToRealmCondition
77 propertyNames.add(AUTHENTICATE_TO_REALM);
91 return (new ArrayList(propertyNames));
H A DAuthenticateToServiceCondition.java74 private static List propertyNames = new ArrayList(1); field in class:AuthenticateToServiceCondition
77 propertyNames.add(AUTHENTICATE_TO_SERVICE);
91 return (new ArrayList(propertyNames));
H A DPrivilegeCondition.java57 private static List propertyNames = new ArrayList(1); field in class:PrivilegeCondition
62 propertyNames.add(STATE);
71 return (new ArrayList(propertyNames));
H A DSessionPropertyCondition.java70 private List propertyNames = Collections.EMPTY_LIST; field in class:SessionPropertyCondition
82 propertyNames = new ArrayList();
93 return propertyNames;
H A DUserSelfCheckCondition.java77 private static List propertyNames; field in class:UserSelfCheckCondition
94 if (propertyNames == null) {
98 propertyNames = Collections.unmodifiableList(answer);
100 return (propertyNames);
/forgerock/openam/openam-distribution/src/main/amserver/samples/server/source/com/sun/identity/samples/policy/
H A DSampleCondition.java60 private List propertyNames; field in class:SampleCondition
67 propertyNames = new ArrayList();
68 propertyNames.add(USER_NAME_LENGTH);
79 return propertyNames;
H A DSampleResponseProvider.java79 private static List propertyNames = new ArrayList(1); field in class:SampleResponseProvider
85 propertyNames.add(ATTRIBUTE_NAME);
128 return propertyNames;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/
H A DServerConfigInheritViewBean.java151 Set propertyNames = (Set)getPageSessionAttribute(
153 populatePropertyNameTableModel(propertyNames);
172 private void populatePropertyNameTableModel(Collection propertyNames) { argument
173 if (!submitCycle && (propertyNames != null)) {
188 for (Iterator iter = propertyNames.iterator(); iter.hasNext();

Completed in 191 milliseconds

1234