Lines Matching refs:exclusive

152 	    String exclusive = XMLUtils.getNodeAttributeValue(
155 addSubject(subjectName, subject, EXCLUSIVE_TYPE.equals(exclusive));
167 String exclusive = XMLUtils.getNodeAttributeValue(
171 EXCLUSIVE_TYPE.equals(exclusive));
292 * The subject is added as a normal (non exclusive) subject.
312 * The subject is added as a normal (non exclusive) subject.
338 * @param exclusive boolean flag indicating whether the subject
339 * is to be exclusive subject. If subject is exclusive,
347 exclusive)
360 users.put(subjectName, new QualifiedSubject(subject, exclusive));
369 * The subject is replaced as a normal (non exclusive) subject.
395 * @param exclusive boolean flag indicating whether the subject
396 * is to be exclusive subject. If subject is exclusive,
404 boolean exclusive) throws NameNotFoundException
412 users.put(subjectName, new QualifiedSubject(subject, exclusive));
457 * Checks if the subject is exclusive.
458 * If subject is exclusive, policy applies to users who are not members of
462 * @return <code>true</code> if the subject is exclusive, <code>false</code>
628 if (!qualifiedSubject.exclusive) {
633 if (qualifiedSubject.exclusive) {
806 private static String EXCLUSIVE_TYPE = "exclusive";
814 * <code>exclusive</code>. An <code>exclusive</code>
822 boolean exclusive = false;
827 * @param exclusive <code>exclusive</code> state of this object
829 QualifiedSubject(Subject subject, boolean exclusive) {
831 this.exclusive = exclusive;
843 * Returns <code>exclusive</code> state of this object
844 * @return <code>exclusive</code> state of this object
847 return exclusive;