Home | History | Annotate | Download | only in auth

Lines Matching defs:subject

27  * granted to the specified {@link Subject}.
31 // subject to be associated
32 private Subject subject;
34 // permission required to get a subject object
39 * Creates a domain combiner for the entity provided in {@code subject}.
41 * @param subject
44 public SubjectDomainCombiner(Subject subject) {
46 if (subject == null) {
49 this.subject = subject;
57 public Subject getSubject() {
63 return subject;
68 * associated with the subject of this {@code SubjectDomainCombiner}.
98 // for each current domain substitute set of principal with subject's
102 Set<Principal> s = subject.getPrincipals();