org.jetlinks.coap.CoapConstants Maven / Gradle / Ivy
package org.jetlinks.coap;
import java.nio.charset.Charset;
/**
* @author guyi
*/
public final class CoapConstants {
public static final int DEFAULT_PORT = 5683;
public static final String WELL_KNOWN_CORE = "/.well-known/core";
public static final Charset DEFAULT_CHARSET = Charset.forName("UTF-8");
public static final long ACK_TIMEOUT = 2000;
public static final float ACK_RANDOM_FACTOR = 1.5f;
public static final Short MAX_RETRANSMIT = 4;
private CoapConstants() {
}
}