org.apache.servicemix.cxfse.CxfSeComponent Maven / Gradle / Ivy
/*
* 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.util.List;
import org.apache.cxf.Bus;
import org.apache.cxf.BusFactory;
import org.apache.servicemix.common.BaseServiceUnitManager;
import org.apache.servicemix.common.DefaultComponent;
import org.apache.servicemix.common.Deployer;
/**
*
* @author gnodet
* @org.apache.xbean.XBean element="component" description="a component for hosting JAX-WS pojos. It is based on the CXF runtime."
*/
public class CxfSeComponent extends DefaultComponent {
public static final String JBI_TRANSPORT_ID = "http://cxf.apache.org/transports/jbi";
private CxfSeEndpoint[] endpoints;
private Bus bus;
public CxfSeComponent() {
}
/**
* @return the endpoints
*/
public CxfSeEndpoint[] getEndpoints() {
return endpoints;
}
/**
* @param endpoints the endpoints to set
* @org.apache.xbean.Property description="the endpoints hosted by a component"
*/
public void setEndpoints(CxfSeEndpoint[] endpoints) {
this.endpoints = endpoints;
}
@Override
protected List getConfiguredEndpoints() {
return asList(endpoints);
}
@Override
protected Class[] getEndpointClasses() {
return new Class[] {CxfSeEndpoint.class };
}
/* (non-Javadoc)
* @see org.servicemix.common.BaseComponent#createServiceUnitManager()
*/
@Override
public BaseServiceUnitManager createServiceUnitManager() {
Deployer[] deployers = new Deployer[] {new CxfSeXBeanDeployer(this) };
return new BaseServiceUnitManager(this, deployers);
}
@Override
protected void doInit() throws Exception {
bus = BusFactory.getDefaultBus();
super.doInit();
}
public Bus getBus() {
return bus;
}
}