blob: 465046b084b0675e4859b81acf1dcd8226e508e8 [file] [log] [blame]
/**
* 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.service.invoker;
import java.util.ResourceBundle;
import org.apache.cxf.common.i18n.BundleUtils;
import org.apache.cxf.common.i18n.Message;
import org.apache.cxf.interceptor.Fault;
import org.apache.cxf.message.Exchange;
/**
* This invoker implementation calls a Factory to create the service object.
*
*/
public class FactoryInvoker extends AbstractInvoker {
static final ResourceBundle BUNDLE = BundleUtils.getBundle(FactoryInvoker.class);
protected Factory factory;
/**
* Create a FactoryInvoker object.
*
* @param factory the factory used to create service object.
*/
public FactoryInvoker(Factory factory) {
this.factory = factory;
}
public FactoryInvoker() {
}
public void setFactory(Factory f) {
this.factory = f;
}
public Object getServiceObject(Exchange ex) {
try {
return factory.create(ex);
} catch (Fault e) {
throw e;
} catch (Throwable e) {
throw new Fault(new Message("CREATE_SERVICE_OBJECT_EXC", BUNDLE), e);
}
}
@Override
public void releaseServiceObject(final Exchange ex, Object obj) {
factory.release(ex, obj);
}
public boolean isSingletonFactory() {
return factory instanceof SingletonFactory;
}
}