1 25 package org.objectweb.jonas_ws.wsgen.generator.ews.wsdltoj2ee.emitter; 26 27 import org.objectweb.jonas_ws.wsgen.generator.ews.wsdltoj2ee.JOnASJ2EEWebServicesContext; 28 29 33 public class FullEmitter extends org.apache.geronimo.ews.jaxrpcmapping.J2eeEmitter implements JOnASWSEmitter { 34 35 38 private ClassLoader classLoader = null; 39 40 private boolean bindingGeneration = true; 41 42 private boolean serviceGeneration = true; 43 44 private boolean deployGeneration = true; 45 46 49 public ClassLoader getClassLoader() { 50 return classLoader; 51 } 52 53 57 public void setClassLoader(ClassLoader classLoader) { 58 this.classLoader = classLoader; 59 } 60 61 64 public JOnASJ2EEWebServicesContext getJOnASWsContext() { 65 return (JOnASJ2EEWebServicesContext) getWscontext(); 66 } 67 68 71 public void setJOnASWsContext(JOnASJ2EEWebServicesContext context) { 72 setWscontext(context); 73 } 74 75 public boolean hasBindingGeneration() { 76 return bindingGeneration; 77 } 78 79 public boolean hasServiceGeneration() { 80 return serviceGeneration; 81 } 82 83 public boolean hasDeployGeneration() { 84 return deployGeneration; 85 } 86 87 public void setBindingGeneration(boolean bg) { 88 bindingGeneration = bg; 89 } 90 91 public void setServiceGeneration(boolean sg) { 92 serviceGeneration = sg; 93 } 94 95 public void setDeployGeneration(boolean dg) { 96 deployGeneration = dg; 97 } 98 } | Popular Tags |