src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/ContentTypeImpl.java

Print this page
rev 447 : 8029237: Update copyright year to match last edit in jdk8 jaxws repository (2013)
Summary: Fixing Copyrights for year 2013
Reviewed-by: chegar
rev 472 : 8036030: Update JAX-WS RI integration to latest version
   1 /*
   2  * Copyright (c) 1997, 2013, 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


  45         this(contentType, null, null);
  46     }
  47 
  48     public ContentTypeImpl(String contentType, @Nullable String soapAction) {
  49         this(contentType, soapAction, null);
  50     }
  51 
  52     public ContentTypeImpl(String contentType, @Nullable String soapAction, @Nullable String accept) {
  53         this(contentType, soapAction, accept, null);
  54     }
  55 
  56     public ContentTypeImpl(String contentType, @Nullable String soapAction, @Nullable String accept, String charsetParam) {
  57         this.contentType = contentType;
  58         this.accept = accept;
  59         this.soapAction = getQuotedSOAPAction(soapAction);
  60         if (charsetParam == null) {
  61             String tmpCharset = null;
  62             try {
  63                 internalContentType = new ContentType(contentType);
  64                 tmpCharset = internalContentType.getParameter("charset");

  65             } catch(Exception e) {
  66                 //Ignore the parsing exception.
  67             }
  68             charset = tmpCharset;
  69         } else {
  70             charset = charsetParam;
  71         }
  72     }
  73 
  74     /**
  75      * Returns the character set encoding.
  76      *
  77      * @return returns the character set encoding.
  78      */
  79     public @Nullable String getCharSet() {
  80         return charset;
  81     }
  82 
  83     /** BP 1.1 R1109 requires SOAPAction too be a quoted value **/
  84     private String getQuotedSOAPAction(String soapAction){


   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


  45         this(contentType, null, null);
  46     }
  47 
  48     public ContentTypeImpl(String contentType, @Nullable String soapAction) {
  49         this(contentType, soapAction, null);
  50     }
  51 
  52     public ContentTypeImpl(String contentType, @Nullable String soapAction, @Nullable String accept) {
  53         this(contentType, soapAction, accept, null);
  54     }
  55 
  56     public ContentTypeImpl(String contentType, @Nullable String soapAction, @Nullable String accept, String charsetParam) {
  57         this.contentType = contentType;
  58         this.accept = accept;
  59         this.soapAction = getQuotedSOAPAction(soapAction);
  60         if (charsetParam == null) {
  61             String tmpCharset = null;
  62             try {
  63                 internalContentType = new ContentType(contentType);
  64                 tmpCharset = internalContentType.getParameter("charset");
  65                 rootId = internalContentType.getParameter("start");
  66             } catch(Exception e) {
  67                 //Ignore the parsing exception.
  68             }
  69             charset = tmpCharset;
  70         } else {
  71             charset = charsetParam;
  72         }
  73     }
  74 
  75     /**
  76      * Returns the character set encoding.
  77      *
  78      * @return returns the character set encoding.
  79      */
  80     public @Nullable String getCharSet() {
  81         return charset;
  82     }
  83 
  84     /** BP 1.1 R1109 requires SOAPAction too be a quoted value **/
  85     private String getQuotedSOAPAction(String soapAction){