src/share/jaxws_classes/javax/xml/soap/SOAPFactory.java

changeset 384
8f2986ff0235
parent 368
0989ad8c0860
child 637
9c07ef4934dd
equal deleted inserted replaced
380:7386eca865e1 384:8f2986ff0235
1 /* 1 /*
2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 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 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
52 */ 52 */
53 static private final String SOAP_FACTORY_PROPERTY = 53 static private final String SOAP_FACTORY_PROPERTY =
54 "javax.xml.soap.SOAPFactory"; 54 "javax.xml.soap.SOAPFactory";
55 55
56 /** 56 /**
57 * A constant representing the name of the default <code>SOAPFactory</code> 57 * Class name of default <code>SOAPFactory</code> implementation.
58 * factory class to be used if another cannot be found. 58 */
59 * a <code>SOAPFactory</code> implementation class. 59 static final String DEFAULT_SOAP_FACTORY
60 */
61 static private final String DEFAULT_SOAP_FACTORY
62 = "com.sun.xml.internal.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl"; 60 = "com.sun.xml.internal.messaging.saaj.soap.ver1_1.SOAPFactory1_1Impl";
63 61
64 /** 62 /**
65 * Creates a <code>SOAPElement</code> object from an existing DOM 63 * Creates a <code>SOAPElement</code> object from an existing DOM
66 * <code>Element</code>. If the DOM <code>Element</code> that is passed in 64 * <code>Element</code>. If the DOM <code>Element</code> that is passed in

mercurial