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

org.apache.knox.gateway.topology.builder.BeanPropertyTopologyBuilder Maven / Gradle / Ivy

The 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.knox.gateway.topology.builder;

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

import org.apache.knox.gateway.topology.Application;
import org.apache.knox.gateway.topology.Provider;
import org.apache.knox.gateway.topology.Service;
import org.apache.knox.gateway.topology.Topology;

public class BeanPropertyTopologyBuilder implements TopologyBuilder {

    private String name;
    private String defaultService;
    private boolean isGenerated;
    private long redeployTime;
    private List providers;
    private List services;
    private List applications;

    public BeanPropertyTopologyBuilder() {
        providers = new ArrayList<>();
        services = new ArrayList<>();
        applications = new ArrayList<>();
    }

    public BeanPropertyTopologyBuilder name(String name) {
        this.name = name;
        return this;
    }

    public String name() {
        return name;
    }

    public BeanPropertyTopologyBuilder generated(String isGenerated) {
        this.isGenerated = Boolean.valueOf(isGenerated);
        return this;
    }

    public boolean isGenerated() {
        return isGenerated;
    }

    public BeanPropertyTopologyBuilder redeployTime(String redeployTime) {
      this.redeployTime = Long.parseLong(redeployTime);
      return this;
    }

    public long getRedeployTime() {
      return redeployTime;
    }

    public BeanPropertyTopologyBuilder defaultService(String defaultService) {
      this.defaultService = defaultService;
      return this;
    }

    public String defaultService() {
      return defaultService;
    }

    public BeanPropertyTopologyBuilder addProvider(Provider provider) {
        providers.add(provider);
        return this;
    }

    public List providers() {
        return providers;
    }

    public BeanPropertyTopologyBuilder addService(Service service) {
        services.add(service);
        return this;
    }

    public List services() {
        return services;
    }

    public BeanPropertyTopologyBuilder addApplication( Application application ) {
        applications.add(application);
        return this;
    }

    public List applications() {
        return applications;
    }

    @Override
    public Topology build() {
        Topology topology = new Topology();
        topology.setName(name);
        topology.setDefaultServicePath(defaultService);
        topology.setGenerated(isGenerated);
        topology.setRedeployTime(redeployTime);

        for (Provider provider : providers) {
            topology.addProvider(provider);
        }

        for (Service service : services) {
            topology.addService(service);
        }

        for (Application application : applications) {
            topology.addApplication(application);
        }

        return topology;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy