All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.service.ServiceImpl 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.cxf.service;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Executor;

import javax.xml.namespace.QName;

import org.apache.cxf.common.injection.NoJSR250Annotations;
import org.apache.cxf.configuration.Configurable;
import org.apache.cxf.databinding.DataBinding;
import org.apache.cxf.endpoint.Endpoint;
import org.apache.cxf.interceptor.AbstractAttributedInterceptorProvider;
import org.apache.cxf.service.invoker.Invoker;
import org.apache.cxf.service.model.EndpointInfo;
import org.apache.cxf.service.model.ServiceInfo;
import org.apache.cxf.workqueue.SynchronousExecutor;

@NoJSR250Annotations
public class ServiceImpl extends AbstractAttributedInterceptorProvider implements Service, Configurable {
    private List serviceInfos;
    private DataBinding dataBinding;
    private Executor executor;
    private Invoker invoker;
    private Map endpoints = new HashMap();
    
    public ServiceImpl() {
        this((ServiceInfo)null);
    }
    
    public ServiceImpl(ServiceInfo si) {
        serviceInfos = new ArrayList();
        if (si != null) {
            serviceInfos.add(si);
        }
        executor = SynchronousExecutor.getInstance();    
    }
    public ServiceImpl(List si) {
        serviceInfos = si;
        executor = SynchronousExecutor.getInstance();    
    }
    
    public String getBeanName() {
        return getName().toString();
    }

    public QName getName() {
        return serviceInfos.get(0).getName();
    }

    public List getServiceInfos() {
        return serviceInfos;
    }
    
    public EndpointInfo getEndpointInfo(QName endpoint) {
        for (ServiceInfo inf : serviceInfos) {
            EndpointInfo ef = inf.getEndpoint(endpoint);
            if (ef != null) {
                return ef;
            }
        }
        return null;
    }
    

    public Executor getExecutor() {
        return executor;
    }

    public void setExecutor(Executor executor) {
        this.executor = executor;
    }

    public Invoker getInvoker() {
        return invoker;
    }

    public void setInvoker(Invoker invoker) {
        this.invoker = invoker;
    }

    public DataBinding getDataBinding() {
        return dataBinding;
    }

    public void setDataBinding(DataBinding dataBinding) {
        this.dataBinding = dataBinding;
    }

    public Map getEndpoints() {
        return endpoints;
    }

    public void setEndpoints(Map endpoints) {
        this.endpoints = endpoints;
    }

    public void setProperties(Map properties) {
        this.putAll(properties);
    }
    
    @Override
    public String toString() {
        return "[ServiceImpl " + getName() + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy