org.apache.servicemix.cxfse.CxfSeEndpoint Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.servicemix.cxfse;
import java.io.IOException;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CopyOnWriteArrayList;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import javax.jbi.component.ComponentContext;
import javax.jbi.management.DeploymentException;
import javax.jbi.messaging.DeliveryChannel;
import javax.jbi.messaging.ExchangeStatus;
import javax.jbi.messaging.InOnly;
import javax.jbi.messaging.MessageExchange;
import javax.jbi.messaging.NormalizedMessage;
import javax.jbi.messaging.RobustInOnly;
import javax.wsdl.WSDLException;
import javax.wsdl.factory.WSDLFactory;
import javax.xml.namespace.QName;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.TransformerException;
import javax.xml.ws.WebServiceRef;
import org.w3c.dom.Element;
import org.xml.sax.SAXException;
import org.apache.cxf.Bus;
import org.apache.cxf.BusException;
import org.apache.cxf.aegis.databinding.AegisDatabinding;
import org.apache.cxf.binding.soap.SoapMessage;
import org.apache.cxf.binding.soap.SoapVersion;
import org.apache.cxf.binding.soap.model.SoapBindingInfo;
import org.apache.cxf.catalog.OASISCatalogManager;
import org.apache.cxf.databinding.AbstractDataBinding;
import org.apache.cxf.endpoint.Server;
import org.apache.cxf.frontend.ServerFactoryBean;
import org.apache.cxf.interceptor.Fault;
import org.apache.cxf.interceptor.Interceptor;
import org.apache.cxf.interceptor.InterceptorProvider;
import org.apache.cxf.jaxb.JAXBDataBinding;
import org.apache.cxf.jaxws.EndpointImpl;
import org.apache.cxf.jaxws.JaxWsServerFactoryBean;
import org.apache.cxf.jaxws.ServiceImpl;
import org.apache.cxf.jaxws.support.JaxWsImplementorInfo;
import org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean;
import org.apache.cxf.message.Message;
import org.apache.cxf.service.model.BindingOperationInfo;
import org.apache.cxf.service.model.EndpointInfo;
import org.apache.cxf.service.model.OperationInfo;
import org.apache.cxf.service.model.ServiceInfo;
import org.apache.cxf.transport.ConduitInitiatorManager;
import org.apache.servicemix.cxf.transport.jbi.JBIDestination;
import org.apache.servicemix.cxf.transport.jbi.JBIDispatcherUtil;
import org.apache.servicemix.cxf.transport.jbi.JBITransportFactory;
import org.apache.cxf.wsdl11.ServiceWSDLBuilder;
import org.apache.cxf.wsdl11.WSDLServiceBuilder;
import org.apache.cxf.xmlbeans.XmlBeansDataBinding;
import org.apache.servicemix.common.endpoints.ProviderEndpoint;
import org.apache.servicemix.cxfse.interceptors.AttachmentInInterceptor;
import org.apache.servicemix.cxfse.interceptors.AttachmentOutInterceptor;
import org.apache.servicemix.cxfse.support.ReflectionUtils;
import org.apache.servicemix.id.IdGenerator;
import org.apache.servicemix.jbi.jaxp.SourceTransformer;
import org.apache.servicemix.soap.util.DomUtil;
import org.springframework.util.ReflectionUtils.FieldCallback;
/**
* @author gnodet
* @org.apache.xbean.XBean element="endpoint" description="an endpoint using CXF's JAX-WS frontend"
*/
public class CxfSeEndpoint extends ProviderEndpoint implements InterceptorProvider {
private static final IdGenerator ID_GENERATOR = new IdGenerator();
private Object pojo;
private EndpointImpl endpoint;
private ServerFactoryBean sf;
private Server server;
private List> in = new CopyOnWriteArrayList>();
private List> out = new CopyOnWriteArrayList>();
private List> outFault = new CopyOnWriteArrayList>();
private List> inFault = new CopyOnWriteArrayList>();
private Map properties;
private boolean mtomEnabled;
private boolean useJBIWrapper = true;
private boolean useSOAPEnvelope = true;
private boolean useAegis;
private boolean useXmlBeans;
private QName pojoService;
private QName pojoEndpoint;
private QName pojoInterfaceName;
private Server soapBindingServer;
private AbstractDataBinding dataBinding;
/**
* Returns the object implementing the endpoint's functionality. It is
* returned as a generic Java Object
that can be cast to the
* proper type.
*
* @return the pojo
*/
public Object getPojo() {
return pojo;
}
/**
* Specifies the object implementing the endpoint's functionality. This
* object should use the JAX-WS annotations.
*
* @param pojo a JAX-WS annotated object
* @org.apache.xbean.Property description="a bean configuring the JAX-WS annotated implementation for the endpoint"
*/
public void setPojo(Object pojo) {
this.pojo = pojo;
}
/**
* Returns the list of interceptors used to process fault messages being
* sent back to the consumer.
*
* @return a list of Interceptor
objects
*/
public List> getOutFaultInterceptors() {
return outFault;
}
/**
* Returns the list of interceptors used to process fault messages being
* recieved by the endpoint.
*
* @return a list of Interceptor
objects
*/
public List> getInFaultInterceptors() {
return inFault;
}
/**
* Returns the list of interceptors used to process messages being recieved
* by the endpoint.
*
* @return a list of Interceptor
objects
*/
public List> getInInterceptors() {
return in;
}
/**
* Returns the list of interceptors used to process responses being sent
* back to the consumer.
*
* @return a list of Interceptor
objects
*/
public List> getOutInterceptors() {
return out;
}
/**
* Specifies a list of interceptors used to process requests recieved by the
* endpoint.
*
* @param interceptors a list of Interceptor
objects
* @org.apache.xbean.Property description="a list of beans configuring interceptors that process incoming requests"
*/
public void setInInterceptors(List> interceptors) {
in.addAll(interceptors);
}
/**
* Specifies a list of interceptors used to process faults recieved by the
* endpoint.
*
* @param interceptors a list of Interceptor
objects
* @org.apache.xbean.Property description="a list of beans configuring interceptors that process incoming faults"
*/
public void setInFaultInterceptors(List> interceptors) {
inFault.addAll(interceptors);
}
/**
* Specifies a list of interceptors used to process responses sent by the
* endpoint.
*
* @param interceptors a list of Interceptor
objects
* @org.apache.xbean.Property description="a list of beans configuring interceptors that process response messages"
*/
public void setOutInterceptors(List> interceptors) {
out.addAll(interceptors);
}
/**
* Specifies a list of interceptors used to process faults sent by the
* endpoint.
*
* @param interceptors a list of Interceptor
objects
* @org.apache.xbean.Property description="a list of beans configuring interceptors that process fault messages being returned to the consumer"
*/
public void setOutFaultInterceptors(List> interceptors) {
outFault.addAll(interceptors);
}
/**
* Specifies a map of properties
*
* @org.apache.xbean.Property description="Specifies a map of properties"
*/
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
/*
* (non-Javadoc)
*
* @see org.apache.servicemix.common.Endpoint#validate()
*/
@Override
public void validate() throws DeploymentException {
if (getPojo() == null) {
// check if the POJO attribute is given.
throw new DeploymentException("pojo attribute is mandatory.");
}
// construct the JBI address
String address = "jbi://" + ID_GENERATOR.generateSanitizedId();
// construct the CXF server (using JAXB or Aegis)
if (isUseAegis()) {
sf = new ServerFactoryBean();
sf.setServiceBean(getPojo());
sf.setAddress(address);
if (getDataBinding() != null && getDataBinding() instanceof AegisDatabinding) {
sf.getServiceFactory().setDataBinding(getDataBinding());
} else {
sf.getServiceFactory().setDataBinding(new AegisDatabinding());
}
sf.getServiceFactory().setPopulateFromClass(true);
sf.setStart(false);
if (isUseJBIWrapper()) {
sf.setBindingId(org.apache.servicemix.cxf.binding.jbi.JBIConstants.NS_JBI_BINDING);
}
if (getPojoService() != null) {
sf.setServiceName(getPojoService());
}
if (getPojoEndpoint() != null) {
sf.setEndpointName(getPojoEndpoint());
}
cleanUpDeadDestination();
server = sf.create();
server.getEndpoint().getInInterceptors().addAll(getInInterceptors());
server.getEndpoint().getInFaultInterceptors().addAll(getInFaultInterceptors());
server.getEndpoint().getOutInterceptors().addAll(getOutInterceptors());
server.getEndpoint().getOutFaultInterceptors().addAll(getOutFaultInterceptors());
if (isMtomEnabled()) {
server.getEndpoint().getInInterceptors().add(new AttachmentInInterceptor());
server.getEndpoint().getOutInterceptors().add(new AttachmentOutInterceptor());
}
if (sf.getServiceFactory().getServiceQName() != null) {
if (getPojoService() == null) {
setPojoService(sf.getServiceFactory().getServiceQName());
}
if (getService() == null) {
setService(sf.getServiceFactory().getServiceQName());
}
}
if (sf.getServiceFactory().getEndpointInfo().getName() != null) {
if (getPojoEndpoint() == null) {
setPojoEndpoint(sf.getServiceFactory().getEndpointInfo().getName());
}
if (getEndpoint() == null) {
setEndpoint(sf.getServiceFactory().getEndpointInfo().getName().getLocalPart());
}
}
if (sf.getServiceFactory().getInterfaceName() != null) {
setPojoInterfaceName(sf.getServiceFactory().getInterfaceName());
if (getInterfaceName() == null) {
setInterfaceName(sf.getServiceFactory().getInterfaceName());
}
}
} else {
JaxWsServiceFactoryBean serviceFactory = new JaxWsServiceFactoryBean();
serviceFactory.setPopulateFromClass(true);
if (getPojoService() != null) {
serviceFactory.setServiceName(getPojoService());
}
if (getPojoEndpoint() != null) {
serviceFactory.setEndpointName(getPojoEndpoint());
}
endpoint = new EndpointImpl(getBus(), getPojo(), new JaxWsServerFactoryBean(serviceFactory));
if (isUseJBIWrapper()) {
endpoint.setBindingUri(org.apache.servicemix.cxf.binding.jbi.JBIConstants.NS_JBI_BINDING);
}
if (isUseXmlBeans()) {
if (getDataBinding() != null && getDataBinding() instanceof XmlBeansDataBinding) {
endpoint.setDataBinding(getDataBinding());
} else {
endpoint.setDataBinding(new XmlBeansDataBinding());
}
} else {
if (getDataBinding() != null && getDataBinding() instanceof JAXBDataBinding) {
endpoint.setDataBinding(getDataBinding());
}
}
endpoint.setInInterceptors(getInInterceptors());
endpoint.setInFaultInterceptors(getInFaultInterceptors());
endpoint.setOutInterceptors(getOutInterceptors());
endpoint.setOutFaultInterceptors(getOutFaultInterceptors());
if (isMtomEnabled()) {
endpoint.getInInterceptors().add(new AttachmentInInterceptor());
endpoint.getOutInterceptors().add(new AttachmentOutInterceptor());
}
JaxWsImplementorInfo implInfo = new JaxWsImplementorInfo(getPojo().getClass());
if (getPojoService() == null) {
setPojoService(implInfo.getServiceName());
}
setPojoInterfaceName(implInfo.getInterfaceName());
if (getPojoEndpoint() == null ) {
setPojoEndpoint(implInfo.getEndpointName());
}
if (getService() == null) {
setService(implInfo.getServiceName());
}
if (getInterfaceName() == null) {
setInterfaceName(implInfo.getInterfaceName());
}
if (getEndpoint() == null) {
setEndpoint(implInfo.getEndpointName().getLocalPart());
}
}
// prepare the CXF server in case of JAXB
if (!isUseAegis()) {
cleanUpDeadDestination();
endpoint.publish(address);
server = endpoint.getServer();
}
if (getService() == null) {
// set the service using CXF endpoint service name
setService(server.getEndpoint().getService().getName());
}
if (getEndpoint() == null) {
// set the endpoint using the CXF endpoint info
setEndpoint(server.getEndpoint().getEndpointInfo()
.getName().getLocalPart());
}
setPojoService(server.getEndpoint().getService().getName());
setPojoEndpoint(server.getEndpoint().getEndpointInfo().getName());
if (!isUseJBIWrapper() && !isUseSOAPEnvelope()) {
// cleanup interceptors
removeInterceptor(server.getEndpoint().getBinding().getInInterceptors(), "ReadHeadersInterceptor");
removeInterceptor(server.getEndpoint().getBinding().getInFaultInterceptors(), "ReadHeadersInterceptor");
removeInterceptor(server.getEndpoint().getBinding().getOutInterceptors(), "SoapOutInterceptor");
removeInterceptor(server.getEndpoint().getBinding().getOutFaultInterceptors(), "SoapOutInterceptor");
removeInterceptor(server.getEndpoint().getBinding().getOutInterceptors(), "StaxOutInterceptor");
}
setDescriptor();
super.validate();
}
private void setDescriptor() throws DeploymentException {
// publish the WSDL in the endpoint descriptor
// ensure the import schema is inline for a provider endpoint
try {
// ensure the jax-ws-catalog is loaded
OASISCatalogManager.getCatalogManager(getBus()).loadContextCatalogs();
definition = new ServiceWSDLBuilder(getBus(), server.getEndpoint().getService().getServiceInfos()
.iterator().next()).build();
EndpointInfo ei = server.getEndpoint().getService().getServiceInfos().iterator().next()
.getEndpoints().iterator().next();
for (ServiceInfo serviceInfo : server.getEndpoint().getService().getServiceInfos()) {
if (serviceInfo.getName().equals(service)
&& getEndpoint() != null
&& serviceInfo.getEndpoint(new QName(serviceInfo.getName().getNamespaceURI(),
getEndpoint())) != null) {
ei = serviceInfo.getEndpoint(new QName(serviceInfo.getName().getNamespaceURI(),
getEndpoint()));
}
}
ServiceInfo serInfo = new ServiceInfo();
Map schemaList = new HashMap();
SchemaUtil schemaUtil = new SchemaUtil(getBus(), schemaList);
schemaUtil.getSchemas(definition, serInfo);
serInfo = ei.getService();
List serviceInfos = new ArrayList();
serviceInfos.add(serInfo);
ServiceWSDLBuilder swBuilder = new ServiceWSDLBuilder(getBus(), serviceInfos);
serInfo.setProperty(WSDLServiceBuilder.WSDL_DEFINITION, null);
serInfo.getInterface().setProperty(WSDLServiceBuilder.WSDL_PORTTYPE, null);
for (OperationInfo opInfo : serInfo.getInterface().getOperations()) {
opInfo.setProperty(WSDLServiceBuilder.WSDL_OPERATION, null);
}
description = WSDLFactory.newInstance().newWSDLWriter().getDocument(swBuilder.build());
} catch (WSDLException ex) {
throw new DeploymentException(ex);
}
}
private void removeInterceptor(List> interceptors, String whichInterceptor) {
for (Interceptor interceptor : interceptors) {
if (interceptor.getClass().getName().endsWith(whichInterceptor)) {
interceptors.remove(interceptor);
}
}
}
/*
* (non-Javadoc)
*
* @see org.apache.servicemix.common.endpoints.ProviderEndpoint#process(javax.jbi.messaging.MessageExchange)
*/
@Override
public void process(MessageExchange exchange) throws Exception {
if (exchange.getStatus() != ExchangeStatus.ACTIVE) {
return;
}
JBIContext.setMessageExchange(exchange);
try {
QName opeName = exchange.getOperation();
EndpointInfo ei = server.getEndpoint().getEndpointInfo();
if (opeName == null) {
// if interface only have one operation, may not specify the
// opeName
// in MessageExchange
if (ei.getBinding().getOperations().size() == 1) {
opeName = ei.getBinding().getOperations().iterator().next().getName();
exchange.setOperation(opeName);
} else {
NormalizedMessage nm = exchange.getMessage("in");
if (soapBindingServer == null) {
ServerFactoryBean sfForSoapBinding = null;
if (isUseAegis()) {
sfForSoapBinding = new ServerFactoryBean();
} else {
sfForSoapBinding = new JaxWsServerFactoryBean();
}
sfForSoapBinding.setServiceBean(getPojo());
sfForSoapBinding.getServiceFactory().setPopulateFromClass(true);
sfForSoapBinding.setStart(false);
sfForSoapBinding.setAddress("/dummy");
soapBindingServer = sfForSoapBinding.create();
}
Message message = soapBindingServer.getEndpoint().getBinding().createMessage();
opeName = findOperation(nm, message, exchange);
exchange.setOperation(opeName);
}
}
JBITransportFactory jbiTransportFactory = (JBITransportFactory)getBus()
.getExtension(ConduitInitiatorManager.class)
.getConduitInitiator(CxfSeComponent.JBI_TRANSPORT_ID);
exchange.setService(getPojoService());
exchange.setInterfaceName(getPojoInterfaceName());
JBIDestination jbiDestination = jbiTransportFactory.getDestination(getPojoService().toString()
+ getPojoInterfaceName().toString());
DeliveryChannel dc = getContext().getDeliveryChannel();
jbiTransportFactory.setDeliveryChannel(dc);
jbiDestination.setDeliveryChannel(dc);
if (exchange.getStatus() == ExchangeStatus.ACTIVE) {
jbiDestination.getJBIDispatcherUtil().dispatch(exchange);
}
if (exchange instanceof InOnly || exchange instanceof RobustInOnly) {
exchange.setStatus(ExchangeStatus.DONE);
dc.send(exchange);
}
} finally {
JBIContext.setMessageExchange(null);
}
}
/*
* (non-Javadoc)
*
* @see org.apache.servicemix.common.endpoints.ProviderEndpoint#start()
*/
@Override
public void start() throws Exception {
super.start();
if (isUseAegis()) {
// if aegis databinding is used, start the server
server.start();
}
ReflectionUtils.doWithFields(getPojo().getClass(), new FieldCallback() {
public void doWith(Field field) throws IllegalArgumentException, IllegalAccessException {
if (field.getAnnotation(WebServiceRef.class) != null) {
ServiceImpl s = new ServiceImpl(getBus(), null, null, field.getType());
s.addPort(new QName("port"), JBITransportFactory.TRANSPORT_ID, "jbi://" + ID_GENERATOR.generateSanitizedId());
Object o = s.getPort(new QName("port"), field.getType());
field.setAccessible(true);
field.set(getPojo(), o);
}
}
});
ReflectionUtils.callLifecycleMethod(getPojo(), PostConstruct.class);
// inject the POJO
injectPojo();
}
/*
* (non-Javadoc)
*
* @see org.apache.servicemix.common.endpoints.ProviderEndpoint#stop()
*/
@Override
public void stop() throws Exception {
if (isUseAegis()) {
server.stop();
} else {
endpoint.stop();
}
ReflectionUtils.callLifecycleMethod(getPojo(), PreDestroy.class);
JBIDispatcherUtil.clean();
JBITransportFactory jbiTransportFactory = (JBITransportFactory)getBus()
.getExtension(ConduitInitiatorManager.class).getConduitInitiator(CxfSeComponent.JBI_TRANSPORT_ID);
jbiTransportFactory.setDeliveryChannel(null);
jbiTransportFactory.removeDestination(getPojoService().toString() + getPojoInterfaceName().toString());
super.stop();
}
protected Bus getBus() {
return ((CxfSeComponent)getServiceUnit().getComponent()).getBus();
}
private void cleanUpDeadDestination() throws DeploymentException {
JBITransportFactory jbiTransportFactory;
try {
jbiTransportFactory = (JBITransportFactory)getBus()
.getExtension(ConduitInitiatorManager.class).getConduitInitiator(CxfSeComponent.JBI_TRANSPORT_ID);
} catch (BusException e) {
throw new DeploymentException(e);
}
if (jbiTransportFactory != null
&& getPojoService() != null
&& getPojoInterfaceName() != null) {
jbiTransportFactory.removeDestination(getPojoService().toString() + getPojoInterfaceName().toString());
}
}
private QName findOperation(NormalizedMessage nm, Message message, MessageExchange exchange)
throws TransformerException, ParserConfigurationException, IOException, SAXException {
// try to figure out the operationName based on the incoming message
// payload and wsdl if use doc/literal/wrapped
Element element = new SourceTransformer().toDOMElement(nm.getContent());
if (!useJBIWrapper) {
SoapVersion soapVersion = ((SoapMessage)message).getVersion();
if (element != null) {
Element bodyElement = (Element)element.getElementsByTagNameNS(
element.getNamespaceURI(),
soapVersion.getBody()
.getLocalPart()).item(0);
if (bodyElement != null) {
element = (Element)bodyElement.getFirstChild();
}
}
} else {
element = DomUtil.getFirstChildElement(DomUtil.getFirstChildElement(element));
}
QName opeName = new QName(element.getNamespaceURI(), element.getLocalName());
SoapBindingInfo binding = (SoapBindingInfo)soapBindingServer.getEndpoint().getEndpointInfo()
.getBinding();
for (BindingOperationInfo op : binding.getOperations()) {
String style = binding.getStyle(op.getOperationInfo());
if (style == null) {
style = binding.getStyle();
}
if ("document".equals(style)) {
if (op.getName().getLocalPart().equals(opeName.getLocalPart())) {
return new QName(getPojoService().getNamespaceURI(), opeName.getLocalPart());
}
} else {
throw new Fault(new Exception("Operation must bound on this MessageExchange if use rpc mode"));
}
}
throw new Fault(new Exception("Operation not bound on this MessageExchange"));
}
@PostConstruct
protected void injectPojo() {
try {
ComponentContext context = getContext();
Method mth = pojo.getClass().getMethod("setContext", new Class[] {ComponentContext.class});
if (mth != null) {
mth.invoke(pojo, new Object[] {context});
}
} catch (Exception e) {
//setContext is optional for the pojo
}
}
/**
* Specifies if the endpoint can process messages with binary data.
*
* @param mtomEnabled a boolean
* @org.apache.xbean.Property description="Specifies if the service can consume MTOM formatted binary data. The default is false
."
*/
public void setMtomEnabled(boolean mtomEnabled) {
this.mtomEnabled = mtomEnabled;
}
public boolean isMtomEnabled() {
return mtomEnabled;
}
/**
* Specifies if the endpoint expects messages that are encased in the JBI
* wrapper used for SOAP messages. Ignore the value of useSOAPEnvelope if
* useJBIWrapper is true
*
* @org.apache.xbean.Property description="Specifies if the endpoint expects to receive the JBI wrapper in the message received from the NMR. The default is true
. Ignore the value of useSOAPEnvelope if useJBIWrapper is true"
*/
public void setUseJBIWrapper(boolean useJBIWrapper) {
this.useJBIWrapper = useJBIWrapper;
}
public boolean isUseJBIWrapper() {
return useJBIWrapper;
}
/**
* Specifies if the endpoint expects soap messages when useJBIWrapper is
* false, if useJBIWrapper is true then ignore useSOAPEnvelope
*
* @org.apache.xbean.Property description="Specifies if the endpoint expects soap messages when useJBIWrapper is false, if useJBIWrapper is true then ignore useSOAPEnvelope. The default is true
.
*/
public void setUseSOAPEnvelope(boolean useSOAPEnvelope) {
this.useSOAPEnvelope = useSOAPEnvelope;
}
public boolean isUseSOAPEnvelope() {
return useSOAPEnvelope;
}
/**
* Specifies if the endpoint use aegis databinding to marshall/unmarshall
* message
*
* @org.apache.xbean.Property description="Specifies if the endpoint use aegis databinding to marshall/unmarshall message. The default is false
.
*/
public void setUseAegis(boolean useAegis) {
this.useAegis = useAegis;
}
public boolean isUseAegis() {
return useAegis;
}
/**
* Specifies the servicemodel service name generated from the pojo
*
* @org.apache.xbean.Property description="Specifies the servicemodel service name generated from the pojo. The default is null
.
*/
public void setPojoService(QName pojoService) {
this.pojoService = pojoService;
}
public QName getPojoService() {
return pojoService;
}
/**
* Specifies the servicemodel endpoint name generated from the pojo
*
* @org.apache.xbean.Property description="Specifies the servicemodel endpoint name generated from the pojo. The default is null
.
*/
public void setPojoEndpoint(QName pojoEndpoint) {
this.pojoEndpoint = pojoEndpoint;
}
public QName getPojoEndpoint() {
return pojoEndpoint;
}
/**
* Specifies the servicemodel interface name generated from the pojo
*
* @org.apache.xbean.Property description="Specifies the servicemodel interface name generated from the pojo. The default is null
.
*/
protected void setPojoInterfaceName(QName pojoInterfaceName) {
this.pojoInterfaceName = pojoInterfaceName;
}
protected QName getPojoInterfaceName() {
return pojoInterfaceName;
}
/**
* Specifies if the endpoint use xmlbeans databinding to marshell/unmarshell
* message
*
* @org.apache.xbean.Property description="Specifies if the endpoint use xmlbeans databinding to marshell/unmarshell message. The default is false
.
*/
public void setUseXmlBeans(boolean useXmlBeans) {
this.useXmlBeans = useXmlBeans;
}
public boolean isUseXmlBeans() {
return useXmlBeans;
}
/**
* Specifies dataBinding used by the Endpoint
*
* @org.apache.xbean.Property description="Specifies dataBinding used by the Endpoint".
*/
public void setDataBinding(AbstractDataBinding dataBinding) {
this.dataBinding = dataBinding;
}
public AbstractDataBinding getDataBinding() {
return dataBinding;
}
}