source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Common/NhincLib/src/gov/hhs/fha/nhinc/connectmgr/data/CMEprInfo.java@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 2.7 KB
Line 
1package gov.hhs.fha.nhinc.connectmgr.data;
2
3/**
4 * This class represents Endpoint Reference (EPR) Information
5 *
6 * @author Les Westberg
7 */
8public class CMEprInfo
9{
10 // Member variables
11 //------------------
12 private String uniformServiceName = "";
13 private String namespacePrefix = "";
14 private String namespaceURI = "";
15 private String portName = "";
16 private String serviceName = "";
17
18 /**
19 * Returns the uniform service name for this EPR. This is the key by which
20 * this service is known in the UDDI.
21 *
22 * @return The uniform service name for this EPR.
23 */
24 public String getUniformServiceName()
25 {
26 return uniformServiceName;
27 }
28
29 /**
30 * Sets the uniform service name for this EPR. This is the key by which
31 * this service is known in the UDDI.
32 *
33 * @param uniformServiceName The uniform service name for this EPR.
34 *
35 */
36 public void setUniformServiceName(String uniformServiceName)
37 {
38 this.uniformServiceName = uniformServiceName;
39 }
40
41
42 /**
43 * Return the namespace prefix.
44 *
45 * @return The namespace prefix.
46 */
47 public String getNamespacePrefix()
48 {
49 return namespacePrefix;
50 }
51
52 /**
53 * Set the namespace prefix.
54 *
55 * @param namespacePrefix The namespace prefix.
56 */
57 public void setNamespacePrefix(String namespacePrefix)
58 {
59 this.namespacePrefix = namespacePrefix;
60 }
61
62 /**
63 * Returns the namespace URI for the endpoint.
64 *
65 * @return Returns the namespace URI for the endpoint.
66 */
67 public String getNamespaceURI()
68 {
69 return namespaceURI;
70 }
71
72 /**
73 * Sets the namespace URI for the endpoint.
74 *
75 * @param namespaceURI The namespace URI for the endpoint.
76 */
77 public void setNamespaceURI(String namespaceURI)
78 {
79 this.namespaceURI = namespaceURI;
80 }
81
82 /**
83 * Returns the port name for the endpoint.
84 *
85 * @return The port name for this endpoint.
86 */
87 public String getPortName()
88 {
89 return portName;
90 }
91
92 /**
93 * Sets the port name for the endpoint.
94 *
95 * @param portName The port name for the endpoint.
96 */
97 public void setPortName(String portName)
98 {
99 this.portName = portName;
100 }
101
102 /**
103 * Returns the service name for the endpoint.
104 *
105 * @return The service name for the endpoint.
106 */
107 public String getServiceName()
108 {
109 return serviceName;
110 }
111
112 /**
113 * Sets the service name for the endpoint.
114 *
115 * @param serviceName The service name for the endpoint.
116 */
117 public void setServiceName(String serviceName)
118 {
119 this.serviceName = serviceName;
120 }
121
122
123}
Note: See TracBrowser for help on using the repository browser.