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

changeset 1
0961a4a21176
child 45
31822b475baa
equal deleted inserted replaced
-1:000000000000 1:0961a4a21176
1 /*
2 * Copyright 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
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 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 }

mercurial