src/share/classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/Message1_1Impl.java

Fri, 07 Aug 2009 11:27:00 -0700

author
asaha
date
Fri, 07 Aug 2009 11:27:00 -0700
changeset 78
860b95cc8d1d
parent 50
42dfec6871f6
permissions
-rw-r--r--

6813167: 6u14 JAX-WS audit mutable static bugs
6803688: Integrate latest JAX-WS (2.1.6) in to JDK 6u14
Reviewed-by: darcy, ramap

duke@1 1 /*
tbell@45 2 * Copyright 2005-2006 Sun Microsystems, Inc. All Rights Reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
duke@1 7 * published by the Free Software Foundation. Sun designates this
duke@1 8 * particular file as subject to the "Classpath" exception as provided
duke@1 9 * by Sun in the LICENSE file that accompanied this code.
duke@1 10 *
duke@1 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 * accompanied this code).
duke@1 16 *
duke@1 17 * You should have received a copy of the GNU General Public License version
duke@1 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 *
duke@1 21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@1 22 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@1 23 * have any questions.
duke@1 24 */
tbell@45 25
tbell@45 26
duke@1 27
duke@1 28 /**
duke@1 29 *
duke@1 30 * @author SAAJ RI Development Team
duke@1 31 */
duke@1 32 package com.sun.xml.internal.messaging.saaj.soap.ver1_1;
duke@1 33
duke@1 34 import java.io.IOException;
duke@1 35 import java.io.InputStream;
duke@1 36 import java.util.logging.Level;
duke@1 37 import java.util.logging.Logger;
duke@1 38
duke@1 39 import javax.xml.soap.*;
duke@1 40
duke@1 41 import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl;
duke@1 42 import com.sun.xml.internal.messaging.saaj.packaging.mime.internet.ContentType;
duke@1 43 import com.sun.xml.internal.messaging.saaj.soap.MessageImpl;
duke@1 44 import com.sun.xml.internal.messaging.saaj.util.LogDomainConstants;
duke@1 45
duke@1 46 public class Message1_1Impl extends MessageImpl implements SOAPConstants {
duke@1 47
tbell@50 48 protected static final Logger log =
duke@1 49 Logger.getLogger(LogDomainConstants.SOAP_VER1_1_DOMAIN,
duke@1 50 "com.sun.xml.internal.messaging.saaj.soap.ver1_1.LocalStrings");
duke@1 51
duke@1 52 public Message1_1Impl() {
duke@1 53 super();
duke@1 54 }
duke@1 55
duke@1 56 public Message1_1Impl(boolean isFastInfoset, boolean acceptFastInfoset) {
duke@1 57 super(isFastInfoset, acceptFastInfoset);
duke@1 58 }
duke@1 59
duke@1 60 public Message1_1Impl(SOAPMessage msg) {
duke@1 61 super(msg);
duke@1 62 }
duke@1 63
duke@1 64 // unused. can we delete this? - Kohsuke
duke@1 65 public Message1_1Impl(MimeHeaders headers, InputStream in)
duke@1 66 throws IOException, SOAPExceptionImpl {
duke@1 67 super(headers, in);
duke@1 68 }
duke@1 69
duke@1 70 public Message1_1Impl(MimeHeaders headers, ContentType ct, int stat, InputStream in)
duke@1 71 throws SOAPExceptionImpl {
duke@1 72 super(headers,ct,stat,in);
duke@1 73 }
duke@1 74
duke@1 75 public SOAPPart getSOAPPart() {
duke@1 76 if (soapPart == null) {
duke@1 77 soapPart = new SOAPPart1_1Impl(this);
duke@1 78 }
duke@1 79 return soapPart;
duke@1 80 }
duke@1 81
duke@1 82 protected boolean isCorrectSoapVersion(int contentTypeId) {
duke@1 83 return (contentTypeId & SOAP1_1_FLAG) != 0;
duke@1 84 }
duke@1 85
duke@1 86 public String getAction() {
duke@1 87 log.log(
duke@1 88 Level.SEVERE,
duke@1 89 "SAAJ0303.ver1_1.msg.op.unsupported.in.SOAP1.1",
duke@1 90 new String[] { "Action" });
duke@1 91 throw new UnsupportedOperationException("Operation not supported by SOAP 1.1");
duke@1 92 }
duke@1 93
duke@1 94 public void setAction(String type) {
duke@1 95 log.log(
duke@1 96 Level.SEVERE,
duke@1 97 "SAAJ0303.ver1_1.msg.op.unsupported.in.SOAP1.1",
duke@1 98 new String[] { "Action" });
duke@1 99 throw new UnsupportedOperationException("Operation not supported by SOAP 1.1");
duke@1 100 }
duke@1 101
duke@1 102 public String getCharset() {
duke@1 103 log.log(
duke@1 104 Level.SEVERE,
duke@1 105 "SAAJ0303.ver1_1.msg.op.unsupported.in.SOAP1.1",
duke@1 106 new String[] { "Charset" });
duke@1 107 throw new UnsupportedOperationException("Operation not supported by SOAP 1.1");
duke@1 108 }
duke@1 109
duke@1 110 public void setCharset(String charset) {
duke@1 111 log.log(
duke@1 112 Level.SEVERE,
duke@1 113 "SAAJ0303.ver1_1.msg.op.unsupported.in.SOAP1.1",
duke@1 114 new String[] { "Charset" });
duke@1 115 throw new UnsupportedOperationException("Operation not supported by SOAP 1.1");
duke@1 116 }
duke@1 117
duke@1 118 protected String getExpectedContentType() {
duke@1 119 return isFastInfoset ? "application/fastinfoset" : "text/xml";
duke@1 120 }
duke@1 121
duke@1 122 protected String getExpectedAcceptHeader() {
duke@1 123 String accept = "text/xml, text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2";
duke@1 124 return acceptFastInfoset ? ("application/fastinfoset, " + accept) : accept;
duke@1 125 }
duke@1 126
duke@1 127 }

mercurial