src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/CompactModelGenerator.java

Thu, 12 Oct 2017 19:44:07 +0800

author
aoqi
date
Thu, 12 Oct 2017 19:44:07 +0800
changeset 760
e530533619ec
parent 0
373ffda63c9a
permissions
-rw-r--r--

merge

     1 /*
     2  * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.xml.internal.ws.policy.sourcemodel;
    28 import com.sun.xml.internal.ws.policy.AssertionSet;
    29 import com.sun.xml.internal.ws.policy.NestedPolicy;
    30 import com.sun.xml.internal.ws.policy.Policy;
    31 import com.sun.xml.internal.ws.policy.PolicyAssertion;
    32 import com.sun.xml.internal.ws.policy.PolicyException;
    33 import com.sun.xml.internal.ws.policy.privateutil.LocalizationMessages;
    34 import com.sun.xml.internal.ws.policy.privateutil.PolicyLogger;
    36 /**
    37  * Create a compact WS-Policy infoset. ExactlyOne and All elements are omitted
    38  * where possible.
    39  *
    40  * @author Fabian Ritzmann
    41  */
    42 class CompactModelGenerator extends PolicyModelGenerator {
    44     private static final PolicyLogger LOGGER = PolicyLogger.getLogger(CompactModelGenerator.class);
    46     private final PolicySourceModelCreator sourceModelCreator;
    49     CompactModelGenerator(PolicySourceModelCreator sourceModelCreator) {
    50         this.sourceModelCreator = sourceModelCreator;
    51     }
    53     @Override
    54     public PolicySourceModel translate(final Policy policy) throws PolicyException {
    55         LOGGER.entering(policy);
    57         PolicySourceModel model = null;
    59         if (policy == null) {
    60             LOGGER.fine(LocalizationMessages.WSP_0047_POLICY_IS_NULL_RETURNING());
    61         } else {
    62             model = this.sourceModelCreator.create(policy);
    63             ModelNode rootNode = model.getRootNode();
    64             final int numberOfAssertionSets = policy.getNumberOfAssertionSets();
    65             if (numberOfAssertionSets > 1) {
    66                 rootNode = rootNode.createChildExactlyOneNode();
    67             }
    68             ModelNode alternativeNode = rootNode;
    69             for (AssertionSet set : policy) {
    70                 if (numberOfAssertionSets > 1) {
    71                     alternativeNode = rootNode.createChildAllNode();
    72                 }
    73                 for (PolicyAssertion assertion : set) {
    74                     final AssertionData data = AssertionData.createAssertionData(assertion.getName(), assertion.getValue(), assertion.getAttributes(), assertion.isOptional(), assertion.isIgnorable());
    75                     final ModelNode assertionNode = alternativeNode.createChildAssertionNode(data);
    76                     if (assertion.hasNestedPolicy()) {
    77                         translate(assertionNode, assertion.getNestedPolicy());
    78                     }
    79                     if (assertion.hasParameters()) {
    80                         translate(assertionNode, assertion.getParametersIterator());
    81                     }
    82                 }
    83             }
    84         }
    86         LOGGER.exiting(model);
    87         return model;
    88     }
    90     @Override
    91     protected ModelNode translate(final ModelNode parentAssertion, final NestedPolicy policy) {
    92         final ModelNode nestedPolicyRoot = parentAssertion.createChildPolicyNode();
    93         final AssertionSet set = policy.getAssertionSet();
    94         translate(nestedPolicyRoot, set);
    95         return nestedPolicyRoot;
    96     }
    98 }

mercurial