jaxws/src/java.xml.soap/share/classes/com/sun/xml/internal/messaging/saaj/soap/SAAJMetaFactoryImpl.java
changeset 28641 6b05689b7445
parent 28640 01e4ca94fb0d
parent 28505 7574ac3bb6c1
child 28642 a42fefc69922
equal deleted inserted replaced
28640:01e4ca94fb0d 28641:6b05689b7445
     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
       
    23  * questions.
       
    24  */
       
    25 
       
    26 package com.sun.xml.internal.messaging.saaj.soap;
       
    27 
       
    28 import javax.xml.soap.SAAJMetaFactory;
       
    29 import javax.xml.soap.SOAPConstants;
       
    30 import javax.xml.soap.MessageFactory;
       
    31 import javax.xml.soap.SOAPFactory;
       
    32 import javax.xml.soap.SOAPException;
       
    33 
       
    34 import java.util.logging.Level;
       
    35 import java.util.logging.Logger;
       
    36 
       
    37 import com.sun.xml.internal.messaging.saaj.util.LogDomainConstants;
       
    38 
       
    39 public class SAAJMetaFactoryImpl extends SAAJMetaFactory {
       
    40 
       
    41     protected static final Logger log =
       
    42         Logger.getLogger(LogDomainConstants.SOAP_DOMAIN,
       
    43                          "com.sun.xml.internal.messaging.saaj.soap.LocalStrings");
       
    44 
       
    45     protected  MessageFactory newMessageFactory(String protocol)
       
    46         throws SOAPException {
       
    47         if (SOAPConstants.SOAP_1_1_PROTOCOL.equals(protocol)) {
       
    48               return new com.sun.xml.internal.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl();
       
    49         } else if (SOAPConstants.SOAP_1_2_PROTOCOL.equals(protocol)) {
       
    50               return new com.sun.xml.internal.messaging.saaj.soap.ver1_2.SOAPMessageFactory1_2Impl();
       
    51         } else if (SOAPConstants.DYNAMIC_SOAP_PROTOCOL.equals(protocol)) {
       
    52               return new com.sun.xml.internal.messaging.saaj.soap.dynamic.SOAPMessageFactoryDynamicImpl();
       
    53         } else {
       
    54             log.log(
       
    55                 Level.SEVERE,
       
    56                 "SAAJ0569.soap.unknown.protocol",
       
    57                 new Object[] {protocol, "MessageFactory"});
       
    58             throw new SOAPException("Unknown Protocol: " + protocol +
       
    59                                         "  specified for creating MessageFactory");
       
    60         }
       
    61     }
       
    62 
       
    63     protected  SOAPFactory newSOAPFactory(String protocol)
       
    64         throws SOAPException {
       
    65         if (SOAPConstants.SOAP_1_1_PROTOCOL.equals(protocol)) {
       
    66             return new com.sun.xml.internal.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl();
       
    67         } else if (SOAPConstants.SOAP_1_2_PROTOCOL.equals(protocol)) {
       
    68             return new com.sun.xml.internal.messaging.saaj.soap.ver1_2.SOAPFactory1_2Impl();
       
    69         } else if (SOAPConstants.DYNAMIC_SOAP_PROTOCOL.equals(protocol)) {
       
    70             return new com.sun.xml.internal.messaging.saaj.soap.dynamic.SOAPFactoryDynamicImpl();
       
    71         } else {
       
    72             log.log(
       
    73                 Level.SEVERE,
       
    74                 "SAAJ0569.soap.unknown.protocol",
       
    75                 new Object[] {protocol, "SOAPFactory"});
       
    76             throw new SOAPException("Unknown Protocol: " + protocol +
       
    77                                         "  specified for creating SOAPFactory");
       
    78         }
       
    79     }
       
    80 
       
    81 }