325N/A/*
325N/A * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
325N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
325N/A *
325N/A * This code is free software; you can redistribute it and/or modify it
325N/A * under the terms of the GNU General Public License version 2 only, as
325N/A * published by the Free Software Foundation. Oracle designates this
325N/A * particular file as subject to the "Classpath" exception as provided
325N/A * by Oracle in the LICENSE file that accompanied this code.
325N/A *
325N/A * This code is distributed in the hope that it will be useful, but WITHOUT
325N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
325N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
325N/A * version 2 for more details (a copy is included in the LICENSE file that
325N/A * accompanied this code).
325N/A *
325N/A * You should have received a copy of the GNU General Public License version
325N/A * 2 along with this work; if not, write to the Free Software Foundation,
325N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
325N/A *
325N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
325N/A * or visit www.oracle.com if you need additional information or have any
325N/A * questions.
325N/A */
325N/A
325N/Apackage com.sun.xml.internal.ws.policy;
325N/A
325N/Aimport com.sun.xml.internal.ws.policy.PolicyMap.ScopeType;
325N/Aimport com.sun.xml.internal.ws.policy.privateutil.LocalizationMessages;
325N/Aimport com.sun.xml.internal.ws.policy.privateutil.PolicyLogger;
325N/Aimport com.sun.xml.internal.ws.policy.subject.PolicyMapKeyConverter;
325N/Aimport com.sun.xml.internal.ws.policy.subject.WsdlBindingSubject;
325N/A
325N/Aimport java.util.Collection;
325N/Aimport java.util.HashMap;
325N/Aimport java.util.LinkedList;
325N/Aimport javax.xml.namespace.QName;
325N/A
325N/A/**
325N/A * Utility methods that operate on a PolicyMap.
325N/A *
325N/A * @author Fabian Ritzmann
325N/A */
325N/Apublic class PolicyMapUtil {
325N/A
325N/A private static final PolicyLogger LOGGER = PolicyLogger.getLogger(PolicyMapUtil.class);
325N/A
325N/A private static final PolicyMerger MERGER = PolicyMerger.getMerger();
325N/A
325N/A /**
325N/A * Prevent instantiation.
325N/A */
325N/A private PolicyMapUtil() {
325N/A }
325N/A
325N/A /**
325N/A * Throw an exception if the policy map contains any policy with at least two
325N/A * policy alternatives.
325N/A *
325N/A * Optional assertions are not considered (unless they have been normalized into
325N/A * two policy alternatives).
325N/A *
325N/A * @param map policy map to be processed
325N/A * @throws PolicyException Thrown if the policy map contains at least one policy
325N/A * with more than one policy alternative
325N/A */
325N/A public static void rejectAlternatives(final PolicyMap map) throws PolicyException {
325N/A for (Policy policy : map) {
325N/A if (policy.getNumberOfAssertionSets() > 1) {
325N/A throw LOGGER.logSevereException(new PolicyException(LocalizationMessages.WSP_0035_RECONFIGURE_ALTERNATIVES(policy.getIdOrName())));
325N/A }
325N/A }
325N/A }
325N/A
325N/A /**
325N/A * Inserts all PolicySubjects of type WsdlBindingSubject into the given policy map.
325N/A *
325N/A * @param policyMap The policy map
325N/A * @param policySubjects The policy subjects. The actual subject must have the
325N/A * type WsdlBindingSubject, otherwise it will not be processed.
325N/A * @param serviceName The name of the current WSDL service
325N/A * @param portName The name of the current WSDL port
325N/A * @throws PolicyException Thrown if the effective policy of a policy subject
325N/A * could not be computed
325N/A */
325N/A public static void insertPolicies(final PolicyMap policyMap, final Collection<PolicySubject> policySubjects, QName serviceName, QName portName)
325N/A throws PolicyException {
325N/A LOGGER.entering(policyMap, policySubjects, serviceName, portName);
325N/A
325N/A final HashMap<WsdlBindingSubject, Collection<Policy>> subjectToPolicies = new HashMap<WsdlBindingSubject, Collection<Policy>>();
325N/A for (PolicySubject subject: policySubjects) {
325N/A final Object actualSubject = subject.getSubject();
325N/A if (actualSubject instanceof WsdlBindingSubject) {
325N/A final WsdlBindingSubject wsdlSubject = (WsdlBindingSubject) actualSubject;
325N/A final Collection<Policy> subjectPolicies = new LinkedList<Policy>();
325N/A subjectPolicies.add(subject.getEffectivePolicy(MERGER));
325N/A final Collection<Policy> existingPolicies = subjectToPolicies.put(wsdlSubject, subjectPolicies);
325N/A if (existingPolicies != null) {
325N/A subjectPolicies.addAll(existingPolicies);
325N/A }
325N/A }
325N/A }
325N/A
325N/A final PolicyMapKeyConverter converter = new PolicyMapKeyConverter(serviceName, portName);
325N/A for (WsdlBindingSubject wsdlSubject : subjectToPolicies.keySet()) {
325N/A final PolicySubject newSubject = new PolicySubject(wsdlSubject, subjectToPolicies.get(wsdlSubject));
325N/A PolicyMapKey mapKey = converter.getPolicyMapKey(wsdlSubject);
325N/A
325N/A if (wsdlSubject.isBindingSubject()) {
325N/A policyMap.putSubject(ScopeType.ENDPOINT, mapKey, newSubject);
325N/A }
325N/A else if (wsdlSubject.isBindingOperationSubject()) {
325N/A policyMap.putSubject(ScopeType.OPERATION, mapKey, newSubject);
325N/A }
325N/A else if (wsdlSubject.isBindingMessageSubject()) {
325N/A switch (wsdlSubject.getMessageType()) {
325N/A case INPUT:
325N/A policyMap.putSubject(ScopeType.INPUT_MESSAGE, mapKey, newSubject);
325N/A break;
325N/A case OUTPUT:
325N/A policyMap.putSubject(ScopeType.OUTPUT_MESSAGE, mapKey, newSubject);
325N/A break;
325N/A case FAULT:
325N/A policyMap.putSubject(ScopeType.FAULT_MESSAGE, mapKey, newSubject);
325N/A break;
325N/A }
325N/A }
325N/A }
325N/A
325N/A LOGGER.exiting();
325N/A }
325N/A
325N/A}