src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/WSDLFaultImpl.java

Tue, 09 Apr 2013 14:51:13 +0100

author
alanb
date
Tue, 09 Apr 2013 14:51:13 +0100
changeset 368
0989ad8c0860
parent 286
f50545b5e2f1
child 408
b0610cd08440
permissions
-rw-r--r--

8010393: Update JAX-WS RI to 2.2.9-b12941
Reviewed-by: alanb, erikj
Contributed-by: miroslav.kos@oracle.com, martin.grebac@oracle.com

     1 /*
     2  * Copyright (c) 1997, 2012, 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.model.wsdl;
    28 import com.sun.xml.internal.ws.api.model.wsdl.WSDLFault;
    29 import com.sun.xml.internal.ws.api.model.wsdl.WSDLOperation;
    30 import com.sun.istack.internal.NotNull;
    32 import javax.xml.namespace.QName;
    33 import javax.xml.stream.XMLStreamReader;
    35 /**
    36  * @author Vivek Pandey
    37  */
    38 public final class WSDLFaultImpl extends AbstractExtensibleImpl implements WSDLFault {
    39     private final String name;
    40     private final QName messageName;
    41     private WSDLMessageImpl message;
    42     private WSDLOperationImpl operation;
    43     private String action = "";
    44     private boolean defaultAction = true;
    46     public WSDLFaultImpl(XMLStreamReader xsr, String name, QName messageName, WSDLOperationImpl operation) {
    47         super(xsr);
    48         this.name = name;
    49         this.messageName = messageName;
    50         this.operation = operation;
    51     }
    53     public String getName() {
    54         return name;
    55     }
    57     public WSDLMessageImpl getMessage() {
    58         return message;
    59     }
    61     @NotNull
    62     public WSDLOperation getOperation() {
    63         return operation;
    64     }
    66     @NotNull
    67     public QName getQName() {
    68         return new QName(operation.getName().getNamespaceURI(), name);
    69     }
    71     @NotNull
    72     public String getAction() {
    73         return action;
    74     }
    75     public void setAction(String action) {
    76         this.action = action;
    77     }
    79     public boolean isDefaultAction() {
    80         return defaultAction;
    81     }
    83     public void setDefaultAction(boolean defaultAction) {
    84         this.defaultAction = defaultAction;
    85     }
    87     void freeze(WSDLModelImpl root){
    88         message = root.getMessage(messageName);
    89     }
    90 }

mercurial