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

org.apache.dubbo.config.bootstrap.builders.ServiceBuilder Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show 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.dubbo.config.bootstrap.builders;

import org.apache.dubbo.config.MethodConfig;
import org.apache.dubbo.config.ProviderConfig;
import org.apache.dubbo.config.ServiceConfig;
import org.apache.dubbo.config.ServiceConfigBase;

import java.util.ArrayList;
import java.util.List;

/**
 * This is a builder for build {@link ServiceConfigBase}.
 *
 * @since 2.7
 */
public class ServiceBuilder extends AbstractServiceBuilder, ServiceBuilder> {
    /**
     * The interface name of the exported service
     */
    private String interfaceName;

    /**
     * The interface class of the exported service
     */
    private Class interfaceClass;

    /**
     * The reference of the interface implementation
     */
    private U ref;

    /**
     * The service name
     */
    private String path;

    /**
     * The method configuration
     */
    private List methods;

    /**
     * The provider configuration
     */
    private ProviderConfig provider;

    /**
     * The providerIds
     */
    private String providerIds;
    /**
     * whether it is a GenericService
     */
    private String generic;

    public static  ServiceBuilder newBuilder() {
        return new ServiceBuilder<>();
    }

    public ServiceBuilder id(String id) {
        return super.id(id);
    }

    public ServiceBuilder interfaceName(String interfaceName) {
        this.interfaceName = interfaceName;
        return getThis();
    }

    public ServiceBuilder interfaceClass(Class interfaceClass) {
        this.interfaceClass = interfaceClass;
        return getThis();
    }

    public ServiceBuilder ref(U ref) {
        this.ref = ref;
        return getThis();
    }

    public ServiceBuilder path(String path) {
        this.path = path;
        return getThis();
    }

    public ServiceBuilder addMethod(MethodConfig method) {
        if (this.methods == null) {
            this.methods = new ArrayList<>();
        }
        this.methods.add(method);
        return getThis();
    }

    public ServiceBuilder addMethods(List methods) {
        if (this.methods == null) {
            this.methods = new ArrayList<>();
        }
        this.methods.addAll(methods);
        return getThis();
    }

    public ServiceBuilder provider(ProviderConfig provider) {
        this.provider = provider;
        return getThis();
    }

    public ServiceBuilder providerIds(String providerIds) {
        this.providerIds = providerIds;
        return getThis();
    }

    public ServiceBuilder generic(String generic) {
        this.generic = generic;
        return getThis();
    }

//    @Override
//    public ServiceBuilder mock(String mock) {
//        throw new IllegalArgumentException("mock doesn't support on provider side");
//    }

//    @Override
//    public ServiceBuilder mock(Boolean mock) {
//        throw new IllegalArgumentException("mock doesn't support on provider side");
//    }

    public ServiceConfig build() {
        ServiceConfig serviceConfig = new ServiceConfig<>();
        super.build(serviceConfig);

        serviceConfig.setInterface(interfaceName);
        serviceConfig.setInterface(interfaceClass);
        serviceConfig.setRef(ref);
        serviceConfig.setPath(path);
        serviceConfig.setMethods(methods);
        serviceConfig.setProvider(provider);
        serviceConfig.setProviderIds(providerIds);
        serviceConfig.setGeneric(generic);

        return serviceConfig;
    }

    @Override
    protected ServiceBuilder getThis() {
        return this;
    }
}