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

com.github.youyinnn.common.Const Maven / Gradle / Ivy

The newest version!
package com.github.youyinnn.common;

/**
 * @author youyinnn
 */
public interface Const {

    interface RequestCode {
        String SUCCESS = "success";
        String FAIL = "fail";
    }

    interface Handler {
        String CHARSET = "utf-8";
    }

    interface Server {
        int PORT = 5678;
        String LOCAL_SERVER_IP = "127.0.0.1";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy