org.apache.cxf.endpoint.AbstractEndpointFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-bundle-jaxrs Show documentation
Show all versions of cxf-bundle-jaxrs Show documentation
Apache CXF JAX-RS Bundle Jar
/**
* 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.cxf.endpoint;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.xml.namespace.QName;
import org.apache.cxf.Bus;
import org.apache.cxf.BusException;
import org.apache.cxf.BusFactory;
import org.apache.cxf.binding.BindingConfiguration;
import org.apache.cxf.binding.BindingFactory;
import org.apache.cxf.databinding.DataBinding;
import org.apache.cxf.feature.AbstractFeature;
import org.apache.cxf.interceptor.AbstractBasicInterceptorProvider;
import org.apache.cxf.service.model.BindingInfo;
import org.apache.cxf.service.model.EndpointInfo;
import org.apache.cxf.transport.DestinationFactory;
import org.apache.cxf.ws.addressing.EndpointReferenceType;
public abstract class AbstractEndpointFactory extends AbstractBasicInterceptorProvider {
protected Bus bus;
protected String address;
protected String transportId;
protected String bindingId;
protected DataBinding dataBinding;
protected BindingFactory bindingFactory;
protected DestinationFactory destinationFactory;
protected String publishedEndpointUrl;
protected QName endpointName;
protected QName serviceName;
protected Map properties;
protected List features;
protected BindingConfiguration bindingConfig;
protected EndpointReferenceType endpointReference;
protected ConduitSelector conduitSelector;
protected abstract Endpoint createEndpoint() throws BusException, EndpointException;
protected abstract EndpointInfo createEndpointInfo() throws BusException;
protected abstract BindingInfo createBindingInfo();
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public Bus getBus() {
if (bus == null) {
bus = BusFactory.getThreadDefaultBus();
}
return bus;
}
public void setBus(Bus bus) {
this.bus = bus;
}
public String getTransportId() {
return transportId;
}
public void setTransportId(String transportId) {
this.transportId = transportId;
}
public void setBindingId(String bind) {
bindingId = bind;
}
public String getBindingId() {
return bindingId;
}
public void setBindingConfig(BindingConfiguration obj) {
bindingConfig = obj;
}
public BindingConfiguration getBindingConfig() {
return bindingConfig;
}
public DestinationFactory getDestinationFactory() {
return destinationFactory;
}
public void setDestinationFactory(DestinationFactory destinationFactory) {
this.destinationFactory = destinationFactory;
}
public String getPublishedEndpointUrl() {
return publishedEndpointUrl;
}
public void setPublishedEndpointUrl(String publishedEndpointUrl) {
this.publishedEndpointUrl = publishedEndpointUrl;
}
public QName getEndpointName() {
return endpointName;
}
public void setEndpointName(QName endpointName) {
this.endpointName = endpointName;
}
public void setServiceName(QName name) {
serviceName = name;
}
public QName getServiceName() {
return serviceName;
}
public void setEndpointReference(EndpointReferenceType epr) {
endpointReference = epr;
}
public Map getProperties() {
return properties;
}
public void setProperties(Map properties) {
this.properties = properties;
}
public List getFeatures() {
if (features == null) {
features = new ArrayList();
}
return features;
}
public void setFeatures(List features) {
this.features = features;
}
public BindingFactory getBindingFactory() {
return bindingFactory;
}
public void setBindingFactory(BindingFactory bf) {
this.bindingFactory = bf;
}
public ConduitSelector getConduitSelector() {
return conduitSelector;
}
public void setConduitSelector(ConduitSelector selector) {
conduitSelector = selector;
}
public DataBinding getDataBinding() {
return dataBinding;
}
public void setDataBinding(DataBinding dataBinding) {
this.dataBinding = dataBinding;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy