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

com.aeontronix.enhancedmule.tools.anypoint.FirewallRule 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;

public class FirewallRule {
    private String cidrBlock;
    private String protocol;
    private String fromPort;
    private String toPort;

    public FirewallRule(String cidrBlock, String protocol, String fromPort, String toPort) {
        this.cidrBlock = cidrBlock;
        this.protocol = protocol;
        this.fromPort = fromPort;
        this.toPort = toPort;
    }

    public FirewallRule() {
    }

    public String getCidrBlock() {
        return cidrBlock;
    }

    public void setCidrBlock(String cidrBlock) {
        this.cidrBlock = cidrBlock;
    }

    public String getProtocol() {
        return protocol;
    }

    public void setProtocol(String protocol) {
        this.protocol = protocol;
    }

    public String getFromPort() {
        return fromPort;
    }

    public void setFromPort(String fromPort) {
        this.fromPort = fromPort;
    }

    public String getToPort() {
        return toPort;
    }

    public void setToPort(String toPort) {
        this.toPort = toPort;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy