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

com.espertech.esperio.http.config.Service Maven / Gradle / Ivy

There is a newer version: 9.0.0
Show newest version
package com.espertech.esperio.http.config;

public class Service {
    private int port;
    private boolean nio;

    public int getPort() {
        return port;
    }

    public void setPort(int port) {
        this.port = port;
    }

    public boolean isNio() {
        return nio;
    }

    public void setNio(boolean nio) {
        this.nio = nio;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy