Skip to content
Snippets Groups Projects
NameSpace.java 453 B
Newer Older
unknown's avatar
unknown committed
package ufrn.imd.utils;

public class NameSpace {

    public final static Integer PORT_BALANCE_SERVICE = 1908;
    public final static Integer PORT_DEPOSIT_SERVICE = 1907;
    public final static String HOST_DEPOSIT_SERVICE =
            String.format("rmi://127.0.0.1:%d/%s", PORT_DEPOSIT_SERVICE, "deposit");
    public final static String HOST_BALANCE_SERVICE =
            String.format("rmi://127.0.0.1:%d/%s", PORT_BALANCE_SERVICE, "balance");
}