1 /*
2 * EL4J, the Extension Library for the J2EE, adds incremental enhancements to
3 * the spring framework, http://el4j.sf.net
4 * Copyright (C) 2005 by ELCA Informatique SA, Av. de la Harpe 22-24,
5 * 1000 Lausanne, Switzerland, http://www.elca.ch
6 *
7 * EL4J is published under the GNU Lesser General Public License (LGPL)
8 * Version 2.1. See http://www.gnu.org/licenses/
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Lesser General Public License for more details.
14 *
15 * For alternative licensing, please contact info@elca.ch
16 */
17 package ch.elca.el4j.services.remoting.protocol;
18
19 import ch.elca.el4j.services.remoting.ProtocolSpecificConfiguration;
20
21 /**
22 * The JAX-WS protocol (Spring) configuration class.
23 *
24 * @svnLink $Revision: 3878 $;$Date: 2009-08-04 15:06:35 +0200 (Di, 04. Aug 2009) $;$Author: swismer $;$URL: https://el4j.svn.sourceforge.net/svnroot/el4j/branches/el4j_3_1/el4j/framework/modules/remoting_jaxws/src/main/java/ch/elca/el4j/services/remoting/protocol/JaxwsSpringProtocolConfiguration.java $
25 *
26 * @author Stefan Wismer (SWI)
27 */
28 public class JaxwsSpringProtocolConfiguration implements ProtocolSpecificConfiguration {
29
30 /**
31 * The URI of the namespace.
32 */
33 private String m_namespaceUri;
34
35 /**
36 * The service name.
37 */
38 private String m_serviceName;
39
40 /**
41 * The port name.
42 */
43 private String m_portName;
44
45 /** {@inheritDoc} */
46 public void afterPropertiesSet() throws Exception { }
47
48 /**
49 * @return the URI of the namespace
50 */
51 public String getNamespaceUri() {
52 return m_namespaceUri;
53 }
54
55 /**
56 * @param namespaceUri the URI of the namespace
57 */
58 public void setNamespaceUri(String namespaceUri) {
59 m_namespaceUri = namespaceUri;
60 }
61
62 /**
63 * @return the service name
64 */
65 public String getServiceName() {
66 return m_serviceName;
67 }
68
69 /**
70 * @param serviceName the service name
71 */
72 public void setServiceName(String serviceName) {
73 m_serviceName = serviceName;
74 }
75
76 /**
77 * @return the port name
78 */
79 public String getPortName() {
80 return m_portName;
81 }
82
83 /**
84 * @param portName the port name
85 */
86 public void setPortName(String portName) {
87 m_portName = portName;
88 }
89
90 }