jaxws/src/java.xml.soap/share/classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/Message1_2Impl.java
changeset 28977 d7609b65606b
parent 28976 8c912c147654
parent 28344 722378bc599e
child 28978 8431abc709c0
equal deleted inserted replaced
28976:8c912c147654 28977:d7609b65606b
     1 /*
       
     2  * Copyright (c) 1997, 2014, 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  */
       
    25 
       
    26 /**
       
    27 *
       
    28 * @author SAAJ RI Development Team
       
    29 */
       
    30 package com.sun.xml.internal.messaging.saaj.soap.ver1_2;
       
    31 
       
    32 import java.io.IOException;
       
    33 import java.io.InputStream;
       
    34 
       
    35 import javax.xml.soap.*;
       
    36 import javax.xml.stream.XMLStreamReader;
       
    37 
       
    38 import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl;
       
    39 import com.sun.xml.internal.messaging.saaj.packaging.mime.internet.ContentType;
       
    40 import com.sun.xml.internal.messaging.saaj.soap.MessageImpl;
       
    41 
       
    42 public class Message1_2Impl extends MessageImpl implements SOAPConstants{
       
    43 
       
    44     public Message1_2Impl() {
       
    45         super();
       
    46     }
       
    47 
       
    48     public Message1_2Impl(SOAPMessage msg) {
       
    49         super(msg);
       
    50     }
       
    51 
       
    52     public Message1_2Impl(boolean isFastInfoset, boolean acceptFastInfoset) {
       
    53         super(isFastInfoset, acceptFastInfoset);
       
    54     }
       
    55 
       
    56     // unused. can we delete this? - Kohsuke
       
    57     public Message1_2Impl(MimeHeaders headers, InputStream in)
       
    58         throws IOException, SOAPExceptionImpl {
       
    59         super(headers, in);
       
    60     }
       
    61 
       
    62     public Message1_2Impl(MimeHeaders headers, ContentType ct, int stat, InputStream in)
       
    63         throws SOAPExceptionImpl {
       
    64         super(headers,ct,stat,in);
       
    65     }
       
    66 
       
    67     public Message1_2Impl(MimeHeaders headers, ContentType ct, int stat, XMLStreamReader reader)
       
    68             throws SOAPExceptionImpl {
       
    69             super(headers,ct,stat,reader);
       
    70     }
       
    71 
       
    72     public SOAPPart getSOAPPart()  {
       
    73         if (soapPartImpl == null)
       
    74             soapPartImpl = new SOAPPart1_2Impl(this);
       
    75 
       
    76         return soapPartImpl;
       
    77     }
       
    78 
       
    79     protected boolean isCorrectSoapVersion(int contentTypeId) {
       
    80         return (contentTypeId & SOAP1_2_FLAG) != 0;
       
    81     }
       
    82 
       
    83     protected String getExpectedContentType() {
       
    84         return isFastInfoset ? "application/soap+fastinfoset" : "application/soap+xml";
       
    85     }
       
    86 
       
    87    protected String getExpectedAcceptHeader() {
       
    88        String accept = "application/soap+xml, text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2";
       
    89        return acceptFastInfoset ? ("application/soap+fastinfoset, " + accept) : accept;
       
    90    }
       
    91 
       
    92 }