aoqi@0: /* aoqi@0: * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. aoqi@0: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. aoqi@0: * aoqi@0: * This code is free software; you can redistribute it and/or modify it aoqi@0: * under the terms of the GNU General Public License version 2 only, as aoqi@0: * published by the Free Software Foundation. Oracle designates this aoqi@0: * particular file as subject to the "Classpath" exception as provided aoqi@0: * by Oracle in the LICENSE file that accompanied this code. aoqi@0: * aoqi@0: * This code is distributed in the hope that it will be useful, but WITHOUT aoqi@0: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or aoqi@0: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License aoqi@0: * version 2 for more details (a copy is included in the LICENSE file that aoqi@0: * accompanied this code). aoqi@0: * aoqi@0: * You should have received a copy of the GNU General Public License version aoqi@0: * 2 along with this work; if not, write to the Free Software Foundation, aoqi@0: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. aoqi@0: * aoqi@0: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA aoqi@0: * or visit www.oracle.com if you need additional information or have any aoqi@0: * questions. aoqi@0: */ aoqi@0: aoqi@0: package com.sun.xml.internal.ws.policy; aoqi@0: aoqi@0: import com.sun.xml.internal.ws.policy.privateutil.LocalizationMessages; aoqi@0: import com.sun.xml.internal.ws.policy.privateutil.PolicyLogger; aoqi@0: import com.sun.xml.internal.ws.policy.privateutil.PolicyUtils; aoqi@0: import java.util.Collection; aoqi@0: import java.util.LinkedList; aoqi@0: import java.util.List; aoqi@0: aoqi@0: /** aoqi@0: * A policy scope is a collection of equally ranked elements or subjects that aoqi@0: * hold policies aoqi@0: * aoqi@0: * @author Fabian Ritzmann aoqi@0: */ aoqi@0: final class PolicyScope { aoqi@0: private static final PolicyLogger LOGGER = PolicyLogger.getLogger(PolicyScope.class); aoqi@0: aoqi@0: private final List subjects = new LinkedList(); aoqi@0: aoqi@0: PolicyScope(final List initialSubjects) { aoqi@0: if (initialSubjects != null && !initialSubjects.isEmpty()) { aoqi@0: this.subjects.addAll(initialSubjects); aoqi@0: } aoqi@0: } aoqi@0: aoqi@0: void attach(final PolicySubject subject) { aoqi@0: if (subject == null) { aoqi@0: throw LOGGER.logSevereException(new IllegalArgumentException(LocalizationMessages.WSP_0020_SUBJECT_PARAM_MUST_NOT_BE_NULL())); aoqi@0: } aoqi@0: aoqi@0: subjects.add(subject); aoqi@0: } aoqi@0: aoqi@0: void dettachAllSubjects() { aoqi@0: subjects.clear(); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * Returns all policies of the scope merged into one policy aoqi@0: * aoqi@0: * @return effective policy of the scope aoqi@0: */ aoqi@0: Policy getEffectivePolicy(final PolicyMerger merger) throws PolicyException { aoqi@0: final LinkedList policies = new LinkedList(); aoqi@0: for (PolicySubject subject : subjects) { aoqi@0: policies.add(subject.getEffectivePolicy(merger)); aoqi@0: } aoqi@0: return merger.merge(policies); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * Returns all subjects contained by this scope aoqi@0: * aoqi@0: * @return The subjects contained by this scope aoqi@0: */ aoqi@0: Collection getPolicySubjects() { aoqi@0: return this.subjects; aoqi@0: } aoqi@0: aoqi@0: aoqi@0: /** aoqi@0: * An {@code Object.toString()} method override. aoqi@0: */ aoqi@0: @Override aoqi@0: public String toString() { aoqi@0: return toString(0, new StringBuffer()).toString(); aoqi@0: } aoqi@0: aoqi@0: /** aoqi@0: * A helper method that appends indented string representation of this instance to the input string buffer. aoqi@0: * aoqi@0: * @param indentLevel indentation level to be used. aoqi@0: * @param buffer buffer to be used for appending string representation of this instance aoqi@0: * @return modified buffer containing new string representation of the instance aoqi@0: */ aoqi@0: StringBuffer toString(final int indentLevel, final StringBuffer buffer) { aoqi@0: final String indent = PolicyUtils.Text.createIndent(indentLevel); aoqi@0: aoqi@0: buffer.append(indent).append("policy scope {").append(PolicyUtils.Text.NEW_LINE); aoqi@0: for (PolicySubject policySubject : subjects) { aoqi@0: policySubject.toString(indentLevel + 1, buffer).append(PolicyUtils.Text.NEW_LINE); aoqi@0: } aoqi@0: buffer.append(indent).append('}'); aoqi@0: aoqi@0: return buffer; aoqi@0: } aoqi@0: }