1/*
2 * Copyright (c) 1997, 2017, 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*/
30package com.sun.xml.internal.messaging.saaj.soap.ver1_2;
31
32import java.io.IOException;
33import java.io.InputStream;
34
35import javax.xml.soap.*;
36import javax.xml.stream.XMLStreamReader;
37
38import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl;
39import com.sun.xml.internal.messaging.saaj.packaging.mime.internet.ContentType;
40import com.sun.xml.internal.messaging.saaj.soap.MessageImpl;
41
42public 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    @Override
73    public SOAPPart getSOAPPart()  {
74        if (soapPartImpl == null)
75            soapPartImpl = new SOAPPart1_2Impl(this);
76
77        return soapPartImpl;
78    }
79
80    @Override
81    protected boolean isCorrectSoapVersion(int contentTypeId) {
82        return (contentTypeId & SOAP1_2_FLAG) != 0;
83    }
84
85    @Override
86    protected String getExpectedContentType() {
87        return isFastInfoset ? "application/soap+fastinfoset" : "application/soap+xml";
88    }
89
90    @Override
91   protected String getExpectedAcceptHeader() {
92       String accept = "application/soap+xml, text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2";
93       return acceptFastInfoset ? ("application/soap+fastinfoset, " + accept) : accept;
94   }
95
96}
97