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

com.aeontronix.anypointsdk.amc.application.deployment.Inbound Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta35
Show newest version
/*
 * Copyright (c) 2023. Aeontronix Inc
 */

package com.aeontronix.anypointsdk.amc.application.deployment;

import com.fasterxml.jackson.annotation.JsonProperty;

public class Inbound {

    @JsonProperty("forwardSslSession")
    private boolean forwardSslSession;

    @JsonProperty("publicUrl")
    private String publicUrl;

    @JsonProperty("lastMileSecurity")
    private boolean lastMileSecurity;

    @JsonProperty("pathRewrite")
    private String pathRewrite;

    public boolean isForwardSslSession() {
        return forwardSslSession;
    }

    public void setForwardSslSession(boolean forwardSslSession) {
        this.forwardSslSession = forwardSslSession;
    }

    public String getPublicUrl() {
        return publicUrl;
    }

    public void setPublicUrl(String publicUrl) {
        this.publicUrl = publicUrl;
    }

    public boolean isLastMileSecurity() {
        return lastMileSecurity;
    }

    public void setLastMileSecurity(boolean lastMileSecurity) {
        this.lastMileSecurity = lastMileSecurity;
    }

    public String getPathRewrite() {
        return pathRewrite;
    }

    public void setPathRewrite(String pathRewrite) {
        this.pathRewrite = pathRewrite;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy