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

com.minlia.cross.holder.ServerPortHolder Maven / Gradle / Ivy

There is a newer version: 1.0.9.RELEASE
Show newest version
package com.minlia.cross.holder;

public class ServerPortHolder {
    private static Integer port;

    public static Integer getPort() {
        return ServerPortHolder.port;
    }

    public static void setPort(Integer port) {
        ServerPortHolder.port=port;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy