01: package salomeTMF_plug.requirements.soap;
02:
03: import javax.xml.rpc.ServiceException;
04:
05: import salomeTMF_plug.requirements.sqlWrapper.ISQLRequirement;
06: import salomeTMF_plug.requirements.sqlWrapper.ISQLSoapFactory;
07:
08: public class SQLSoapFactory implements ISQLSoapFactory {
09:
10: public ISQLRequirement getISQLRequirement() {
11:
12: try {
13: return new ISQLRequirementServiceLocator()
14: .getSQLRequirement();
15: } catch (ServiceException e) {
16: e.printStackTrace();
17: }
18: return null;
19: }
20:
21: }
|