source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Examples/JAXBBindingExample/JAXBBindingEJB/src/java/gov/hhs/fha/nhinc/util/properties/PropertyAccessor.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: 3.9 KB
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package gov.hhs.fha.nhinc.util.properties;
7
8import gov.hhs.fha.nhinc.nhinccomponentpropaccessor.NhincComponentPropAccessorPortType;
9import javax.ejb.Stateless;
10import javax.jws.WebService;
11
12/**
13 *
14 * @author westbergl
15 */
16@WebService(serviceName = "NhincComponentPropAccessor", portName = "NhincComponentPropAccessorPort", endpointInterface = "gov.hhs.fha.nhinc.nhinccomponentpropaccessor.NhincComponentPropAccessorPortType", targetNamespace = "urn:gov:hhs:fha:nhinc:nhinccomponentpropaccessor", wsdlLocation = "META-INF/wsdl/PropertyAccessor/NhincComponentPropAccessor.wsdl")
17@Stateless
18public class PropertyAccessor implements NhincComponentPropAccessorPortType {
19
20 public gov.hhs.fha.nhinc.common.propertyaccess.GetPropertyResponseType getProperty(gov.hhs.fha.nhinc.common.propertyaccess.GetPropertyRequestType getPropertyRequest)
21 {
22 System.out.println("getproperty was called.");
23 return null;
24 }
25
26 public gov.hhs.fha.nhinc.common.propertyaccess.GetPropertyBooleanResponseType getPropertyBoolean(gov.hhs.fha.nhinc.common.propertyaccess.GetPropertyBooleanRequestType getPropertyBooleanRequest)
27 {
28 System.out.println("getPropertyBoolean was called.");
29 return null;
30 }
31
32 public gov.hhs.fha.nhinc.common.propertyaccess.GetPropertyNamesResponseType getPropertyNames(gov.hhs.fha.nhinc.common.propertyaccess.GetPropertyNamesRequestType getPropertyNamesRequest)
33 {
34 System.out.println("getPropertyNames was called.");
35 return null;
36 }
37
38 public gov.hhs.fha.nhinc.common.propertyaccess.GetPropertiesResponseType getProperties(gov.hhs.fha.nhinc.common.propertyaccess.GetPropertiesRequestType getPropertiesRequest)
39 {
40 System.out.println("getProperties was called.");
41 return null;
42 }
43
44 public gov.hhs.fha.nhinc.common.propertyaccess.GetRefreshDurationResponseType getRefreshDuration(gov.hhs.fha.nhinc.common.propertyaccess.GetRefreshDurationRequestType getRefreshDurationRequest)
45 {
46 System.out.println("getRefreshDuration was called.");
47 return null;
48 }
49
50 public gov.hhs.fha.nhinc.common.propertyaccess.GetDurationBeforeNextRefreshResponseType getDurationBeforeNextRefresh(gov.hhs.fha.nhinc.common.propertyaccess.GetDurationBeforeNextRefreshRequestType getDurationBeforeNextRefreshRequest)
51 {
52 System.out.println("getDurationBeforenextRefresh was called.");
53 return null;
54 }
55
56 public gov.hhs.fha.nhinc.common.propertyaccess.ForceRefreshResponseType forceRefresh(gov.hhs.fha.nhinc.common.propertyaccess.ForceRefreshRequestType forceRefreshRequest)
57 {
58 System.out.println("forceRefresh was called.");
59 return null;
60 }
61
62 public gov.hhs.fha.nhinc.common.propertyaccess.GetPropertyFileLocationResponseType getPropertyFileLocation(gov.hhs.fha.nhinc.common.propertyaccess.GetPropertyFileLocationRequestType getPropertyFileLocationRequest)
63 {
64 System.out.println("getPropertyFileLocation was called.");
65 return null;
66 }
67
68 public gov.hhs.fha.nhinc.common.propertyaccess.DumpPropsToLogResponseType dumpPropsToLog(gov.hhs.fha.nhinc.common.propertyaccess.DumpPropsToLogRequestType dumpPropsToLogRequest)
69 {
70 System.out.println("getDumpPropsToLog was called.");
71 return null;
72 }
73
74 public gov.hhs.fha.nhinc.common.propertyaccess.WritePropertyFileResponseType writePropertyFile(gov.hhs.fha.nhinc.common.propertyaccess.WritePropertyFileRequestType writePropertyFileRequest)
75 {
76 System.out.println("writePropertyFile was called.");
77 return null;
78 }
79
80 public gov.hhs.fha.nhinc.common.propertyaccess.DeletePropertyFileResponseType deletePropertyFile(gov.hhs.fha.nhinc.common.propertyaccess.DeletePropertyFileRequestType deletePropertyFileRequest)
81 {
82 System.out.println("DeletePropertyFile was called.");
83 return null;
84 }
85
86}
Note: See TracBrowser for help on using the repository browser.