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

io.github.nichetoolkit.socket.handler.JtUnsupportedHandler Maven / Gradle / Ivy

package io.github.nichetoolkit.socket.handler;

import io.github.nichetoolkit.socket.server.handler.UnsupportedHandler;
import io.github.nichetoolkit.socket.util.Jt808Utils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;

/**
 * 

JtUnsupportedHandler

* @author Cyan ([email protected]) * @version v.1.0 */ @Slf4j @Component public class JtUnsupportedHandler extends UnsupportedHandler { @Override public byte[] commonAnswer(byte[] phone, byte[] flowId, byte[] messageId) { return Jt808Utils.buildJt8001(phone,flowId,messageId,(byte) 3); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy