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

com.aeontronix.enhancedmule.tools.anypoint.api.APIEndpoint Maven / Gradle / Ivy

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

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

import com.fasterxml.jackson.annotation.JsonProperty;

public class APIEndpoint {
    private String type;
    private String uri;
    private boolean mule4;

    @JsonProperty
    public String getType() {
        return type;
    }

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

    @JsonProperty
    public String getUri() {
        return uri;
    }

    public void setUri(String uri) {
        this.uri = uri;
    }

    @JsonProperty("muleVersion4OrAbove")
    public boolean isMule4() {
        return mule4;
    }

    public void setMule4(boolean mule4) {
        this.mule4 = mule4;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy