Searched refs:subjects (Results 1 - 25 of 124) sorted by relevance

12345

/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DAndSubjectTest.java56 Set<EntitlementSubject> subjects = new HashSet<EntitlementSubject>();
57 subjects.add(us1);
58 subjects.add(us2);
59 subjects.add(gs1);
60 subjects.add(gs2);
61 AndSubject andSubject = new AndSubject(subjects);
H A DOrSubjectTest.java57 Set<EntitlementSubject> subjects = new HashSet<EntitlementSubject>();
58 subjects.add(us1);
59 subjects.add(us2);
60 subjects.add(gs1);
61 subjects.add(gs2);
62 OrSubject os = new OrSubject(subjects);
H A DNotSubjectTest.java44 Set<EntitlementSubject> subjects = new HashSet<EntitlementSubject>();
49 subjects.add(aus);
50 subjects.add(aus2);
55 myNotSubject.setESubjects(subjects);
64 Set<EntitlementSubject> subjects = new HashSet<EntitlementSubject>();
68 subjects.add(aus);
73 myNotSubject.setESubjects(subjects);
H A DApplicationTypeTest.java64 Set<String> subjects = new HashSet<String>();
65 subjects.add("com.sun.identity.admin.model.OrViewSubject");
66 appl.setSubjects(subjects);
121 Set<String> subjects = app.getSubjects();
122 if (!subjects.contains("com.sun.identity.admin.model.OrViewSubject")) {
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/
H A DAndSubjectTest.java56 Set<EntitlementSubject> subjects = new HashSet<EntitlementSubject>();
57 subjects.add(us1);
58 subjects.add(us2);
59 subjects.add(gs1);
60 subjects.add(gs2);
61 AndSubject andSubject = new AndSubject(subjects);
H A DOrSubjectTest.java57 Set<EntitlementSubject> subjects = new HashSet<EntitlementSubject>();
58 subjects.add(us1);
59 subjects.add(us2);
60 subjects.add(gs1);
61 subjects.add(gs2);
62 OrSubject os = new OrSubject(subjects);
H A DNotSubjectTest.java44 Set<EntitlementSubject> subjects = new HashSet<EntitlementSubject>();
49 subjects.add(aus);
50 subjects.add(aus2);
55 myNotSubject.setESubjects(subjects);
64 Set<EntitlementSubject> subjects = new HashSet<EntitlementSubject>();
68 subjects.add(aus);
73 myNotSubject.setESubjects(subjects);
H A DApplicationTypeTest.java64 Set<String> subjects = new HashSet<String>();
65 subjects.add("com.sun.identity.admin.model.OrViewSubject");
66 appl.setSubjects(subjects);
121 Set<String> subjects = app.getSubjects();
122 if (!subjects.contains("com.sun.identity.admin.model.OrViewSubject")) {
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/entitlement/
H A DSetApplicationPrivilegeSubjects.java89 Set<SubjectImplementation> subjects = (bAdd) ?
91 appPrivilege.setSubject(subjects);
112 Set<SubjectImplementation> subjects = new
114 subjects.addAll(subjects1);
115 subjects.addAll(subjects2);
116 return subjects;
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/entitlement/
H A DSetApplicationPrivilegeSubjects.java92 Set<SubjectImplementation> subjects = (bAdd) ?
94 appPrivilege.setSubject(subjects);
115 Set<SubjectImplementation> subjects = new
117 subjects.addAll(subjects1);
118 subjects.addAll(subjects2);
119 return subjects;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/delegation/
H A DDelegationPrivilege.java47 * <code>DelegationPermission</code>, and a set of subjects. The name is the
66 private Set subjects; field in class:DelegationPrivilege
71 * <code>DelegationPermission</code>, and a set of subjects.
77 * @param subjects The set of subjects that the privilege applies to
82 public DelegationPrivilege(String name, Set permissions, Set subjects) argument
87 setSubjects(subjects);
94 * @param subjects The set of subjects the privilege applies to
100 public DelegationPrivilege(String name, Set subjects, Strin argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/delegation/
H A DDelegationPrivilege.java47 * <code>DelegationPermission</code>, and a set of subjects. The name is the
66 private Set subjects; field in class:DelegationPrivilege
71 * <code>DelegationPermission</code>, and a set of subjects.
77 * @param subjects The set of subjects that the privilege applies to
82 public DelegationPrivilege(String name, Set permissions, Set subjects) argument
87 setSubjects(subjects);
94 * @param subjects The set of subjects the privilege applies to
100 public DelegationPrivilege(String name, Set subjects, Strin argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DRequestImpl.java74 private List subjects = new ArrayList(); field in class:RequestImpl
204 subjects.add(subject);
235 subjects.add(subject);
292 return subjects;
298 * @param subjects the one to many <code>Subject</code> elements of this
306 public void setSubjects(List subjects) throws XACMLException { argument
312 if (subjects == null || subjects.isEmpty()) {
317 this.subjects.addAll(subjects);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/impl/
H A DRequestImpl.java74 private List subjects = new ArrayList(); field in class:RequestImpl
204 subjects.add(subject);
235 subjects.add(subject);
292 return subjects;
298 * @param subjects the one to many <code>Subject</code> elements of this
306 public void setSubjects(List subjects) throws XACMLException { argument
312 if (subjects == null || subjects.isEmpty()) {
317 this.subjects.addAll(subjects);
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DApplicationPrivilege.java47 private Set<SubjectImplementation> subjects; field in class:ApplicationPrivilege
67 subjects = new HashSet<SubjectImplementation>();
72 subjects.addAll(entitlementSubjects);
107 return subjects;
H A DApplication.java125 private Set<String> subjects; field in class:Application
186 if (subjects != null) {
187 clone.subjects = new HashSet<String>();
188 clone.subjects.addAll(subjects);
236 return subjects;
294 * @param subjects Supported subject class names.
296 public void setSubjects(Set<String> subjects) { argument
298 if (subjects == null) {
299 subjects
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/
H A DRequest.java65 * @param subjects the one to many <code>Subject</code> elements of this
73 public void setSubjects(List subjects) throws XACMLException; argument
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/conditions/
H A DManageSubjectsView.js47 "subjects": {
61 this.properties = "subjects";
65 this.data.subjects = [];
75 self.data.subjects.push(item);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DApplicationPrivilege.java47 private Set<SubjectImplementation> subjects; field in class:ApplicationPrivilege
67 subjects = new HashSet<SubjectImplementation>();
72 subjects.addAll(entitlementSubjects);
107 return subjects;
H A DApplication.java95 private Set<String> subjects; field in class:Application
157 if (subjects != null) {
158 clone.subjects = new HashSet<String>();
159 clone.subjects.addAll(subjects);
207 return subjects;
274 * @param subjects Supported subject class names.
276 public void setSubjects(Set<String> subjects) { argument
278 if (subjects == null) {
279 subjects
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/
H A DRequest.java65 * @param subjects the one to many <code>Subject</code> elements of this
73 public void setSubjects(List subjects) throws XACMLException; argument
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/conditions/
H A DManageSubjectsView.js47 "subjects": {
61 this.properties = "subjects";
65 this.data.subjects = [];
75 self.data.subjects.push(item);
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/delegation/model/
H A DDelegationModelImpl.java56 * Returns delegation subjects under a realm. Returning a set of
61 * @return delegation subjects under a realm.
157 Set subjects = dp.getSubjects();
161 if (!subjects.contains(uid)) {
162 subjects.add(uid);
166 if (subjects.contains(uid)) {
167 subjects.remove(uid);
178 Set subjects = new HashSet(2);
179 subjects.add(uid);
182 name, subjects, realmNam
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/delegation/model/
H A DDelegationModelImpl.java56 * Returns delegation subjects under a realm. Returning a set of
61 * @return delegation subjects under a realm.
157 Set subjects = dp.getSubjects();
161 if (!subjects.contains(uid)) {
162 subjects.add(uid);
166 if (subjects.contains(uid)) {
167 subjects.remove(uid);
178 Set subjects = new HashSet(2);
179 subjects.add(uid);
182 name, subjects, realmNam
[all...]
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/idrepo/
H A DAddPrivileges.java110 Set subjects = dp.getSubjects();
111 if (!subjects.contains(uid)) {
112 subjects.add(uid);
113 newDp = new DelegationPrivilege(name, subjects, realm);
124 Set subjects = new HashSet(2);
125 subjects.add(uid);
126 newDp = new DelegationPrivilege(name, subjects, realm);

Completed in 72 milliseconds

12345