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

Mon, 04 May 2009 21:10:41 -0700

author
tbell
date
Mon, 04 May 2009 21:10:41 -0700
changeset 50
42dfec6871f6
parent 45
31822b475baa
child 78
860b95cc8d1d
permissions
-rw-r--r--

6658158: Mutable statics in SAAJ (findbugs)
6658163: txw2.DatatypeWriter.BUILDIN is a mutable static (findbugs)
Reviewed-by: darcy

     1 /*
     2  * Copyright 2005-2006 Sun Microsystems, Inc.  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.  Sun designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22  * CA 95054 USA or visit www.sun.com if you need additional information or
    23  * have any questions.
    24  */
    25 package com.sun.xml.internal.messaging.saaj.soap;
    27 import javax.xml.soap.SAAJMetaFactory;
    28 import javax.xml.soap.SOAPConstants;
    29 import javax.xml.soap.MessageFactory;
    30 import javax.xml.soap.SOAPFactory;
    31 import javax.xml.soap.SOAPException;
    33 import java.util.logging.Level;
    34 import java.util.logging.Logger;
    36 import com.sun.xml.internal.messaging.saaj.util.LogDomainConstants;
    38 public class SAAJMetaFactoryImpl extends SAAJMetaFactory {
    40     protected static final Logger log =
    41         Logger.getLogger(LogDomainConstants.SOAP_DOMAIN,
    42                          "com.sun.xml.internal.messaging.saaj.soap.LocalStrings");
    44     protected  MessageFactory newMessageFactory(String protocol)
    45         throws SOAPException {
    46         if (SOAPConstants.SOAP_1_1_PROTOCOL.equals(protocol)) {
    47               return new com.sun.xml.internal.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl();
    48         } else if (SOAPConstants.SOAP_1_2_PROTOCOL.equals(protocol)) {
    49               return new com.sun.xml.internal.messaging.saaj.soap.ver1_2.SOAPMessageFactory1_2Impl();
    50         } else if (SOAPConstants.DYNAMIC_SOAP_PROTOCOL.equals(protocol)) {
    51               return new com.sun.xml.internal.messaging.saaj.soap.dynamic.SOAPMessageFactoryDynamicImpl();
    52         } else {
    53             log.log(
    54                 Level.SEVERE,
    55                 "SAAJ0569.soap.unknown.protocol",
    56                 new Object[] {protocol, "MessageFactory"});
    57             throw new SOAPException("Unknown Protocol: " + protocol +
    58                                         "  specified for creating MessageFactory");
    59         }
    60     }
    62     protected  SOAPFactory newSOAPFactory(String protocol)
    63         throws SOAPException {
    64         if (SOAPConstants.SOAP_1_1_PROTOCOL.equals(protocol)) {
    65             return new com.sun.xml.internal.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl();
    66         } else if (SOAPConstants.SOAP_1_2_PROTOCOL.equals(protocol)) {
    67             return new com.sun.xml.internal.messaging.saaj.soap.ver1_2.SOAPFactory1_2Impl();
    68         } else if (SOAPConstants.DYNAMIC_SOAP_PROTOCOL.equals(protocol)) {
    69             return new com.sun.xml.internal.messaging.saaj.soap.dynamic.SOAPFactoryDynamicImpl();
    70         } else {
    71             log.log(
    72                 Level.SEVERE,
    73                 "SAAJ0569.soap.unknown.protocol",
    74                 new Object[] {protocol, "SOAPFactory"});
    75             throw new SOAPException("Unknown Protocol: " + protocol +
    76                                         "  specified for creating SOAPFactory");
    77         }
    78     }
    80 }

mercurial