01: package com.bostechcorp.cbesb.common.sa.component;
02:
03: import javax.wsdl.WSDLException;
04:
05: import com.bostechcorp.cbesb.common.sa.service.EndPoint;
06: import com.bostechcorp.cbesb.common.sa.service.PropertiesKey;
07: import com.bostechcorp.cbesb.common.util.generators.wsdl.generators.AbstractWsdlGenaretor;
08:
09: public class BootstrapComponent extends AbstractComponent {
10:
11: public BootstrapComponent() {
12: super ();
13: this .setComponentType(PropertiesKey.COMPONENTTYPE_BOOTSTRAP);
14: this .setInterfaceName("BootstrapInterface");
15: this .setName("Bootstrap");
16: this .setServiceName("BootstrapService");
17: }
18:
19: public String getComponentName() {
20: return "ChainBuilderESB-SE-Bootstrap";
21: }
22:
23: public void generateWSDL(String path) throws Exception {
24:
25: }
26:
27: @Override
28: protected AbstractWsdlGenaretor getWsdlGenerator(String path,
29: String saName, EndPoint ep) throws WSDLException {
30: // TODO Auto-generated method stub
31: return null;
32: }
33: }
|