📄 smgploginrespmessage.java
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
// Source File Name: SMGPLoginRespMessage.java
package com.huawei.insa2.comm.smgp.message;
import com.huawei.insa2.comm.smgp.SMGPConstant;
import com.huawei.insa2.util.TypeConvert;
// Referenced classes of package com.huawei.insa2.comm.smgp.message:
// SMGPMessage
public class SMGPLoginRespMessage extends SMGPMessage
{
public SMGPLoginRespMessage(byte buf[])
throws IllegalArgumentException
{
super.buf = new byte[25];
if(buf.length != 25)
{
throw new IllegalArgumentException(SMGPConstant.SMC_MESSAGE_ERROR);
} else
{
System.arraycopy(buf, 0, super.buf, 0, buf.length);
sequence_Id = TypeConvert.byte2int(super.buf, 0);
return;
}
}
public int getStatus()
{
return TypeConvert.byte2int(buf, 4);
}
public byte[] getAuthenticatorServer()
{
byte tmpbuf[] = new byte[16];
System.arraycopy(buf, 8, tmpbuf, 0, 16);
return tmpbuf;
}
public byte getVersion()
{
return buf[24];
}
public String toString()
{
StringBuffer strBuf = new StringBuffer(300);
strBuf.append("SMGPLoginRespMessage: ");
strBuf.append("PacketLength=".concat(String.valueOf(String.valueOf(buf.length))));
strBuf.append(",RequestID=-2147483647");
strBuf.append(",Sequence_Id=".concat(String.valueOf(String.valueOf(getSequenceId()))));
strBuf.append(",Status=".concat(String.valueOf(String.valueOf(getStatus()))));
strBuf.append(",AuthenticatorServer=".concat(String.valueOf(String.valueOf(new String(getAuthenticatorServer())))));
strBuf.append(",Version=".concat(String.valueOf(String.valueOf(getVersion()))));
return strBuf.toString();
}
public int getRequestId()
{
return 0x80000001;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -