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

com.aeontronix.enhancedmule.tools.anypoint.provisioning.EnvironmentDescriptor Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha4
Show newest version
/*
 * Copyright (c) Aeontronix 2020
 */

package com.aeontronix.enhancedmule.tools.anypoint.provisioning;

import com.aeontronix.enhancedmule.tools.anypoint.Environment;
import com.aeontronix.enhancedmule.tools.anypoint.NotFoundException;
import com.aeontronix.enhancedmule.tools.anypoint.Organization;
import com.aeontronix.enhancedmule.tools.util.HttpException;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.aeontronix.commons.StringUtils;
import org.slf4j.Logger;

import static org.slf4j.LoggerFactory.getLogger;

public class EnvironmentDescriptor {
    private static final Logger logger = getLogger(EnvironmentDescriptor.class);
    private String name;
    private String description;
    private String group;
    private Environment.Type type;

    public Environment provision(Organization org) throws HttpException, ProvisioningException {
        Environment env;
        try {
            if(StringUtils.isBlank(name) ) {
                throw new ProvisioningException("environment name missing");
            }
            env = org.findEnvironmentByName(name);
        } catch (NotFoundException e) {
            env = org.createEnvironment(name, type);
            logger.info("Created environment {}", name);
        }
        if( group != null ) {
            env.setGroup(group);
        }
        return env;
    }

    @JsonProperty(required = false)
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getGroup() {
        return group;
    }

    public void setGroup(String group) {
        this.group = group;
    }

    @JsonProperty(required = true)
    public Environment.Type getType() {
        return type;
    }

    public void setType(Environment.Type type) {
        this.type = type;
    }

    @Override
    public String toString() {
        return "EnvironmentDescriptor{" +
                "name='" + name + '\'' +
                ", type=" + type +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy