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

io.swagger.codegen.v3.service.HostAccessControl Maven / Gradle / Ivy

There is a newer version: 3.0.64
Show newest version
package io.swagger.codegen.v3.service;

public class HostAccessControl {
    public String getHost() {
        return host;
    }

    public void setHost(String host) {
        this.host = host;
    }

    public boolean isRegex() {
        return regex;
    }

    public void setRegex(boolean regex) {
        this.regex = regex;
    }

    public boolean isEndsWith() {
        return endsWith;
    }

    public void setEndsWith(boolean endsWith) {
        this.endsWith = endsWith;
    }

    private String host;
    private boolean regex;
    private boolean endsWith;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy