?? msgcreateringsetrsp.java
字號:
/**
*
*/
package com.aceway.vas.sjcraw.cbgp201.crm.ruc;
import java.nio.ByteBuffer;
import com.aceway.vas.sjcraw.cbgp201.Msg;
import com.aceway.vas.sjcraw.cbgp201.common.DataFormat;
/**
* @標題: 華為彩鈴平臺接口規范
* @說明:
* @版權: Copyright(c) 2007
* @公司: 北京漢銘信通科技有限公司
* @部門: 增值業務部
* @作者: 武達
* @Jun 6, 2007
*/
public class MsgCreateRingSetRsp extends Msg {
/*
RingSetIndex 2 Integer 鈴音設置標識,每個用戶的鈴音設置方式都有自己唯一的標識
*/
private int ringSetIndex;
/**
* @param bytes
*/
public MsgCreateRingSetRsp(byte[] bytes) {
super(bytes);
ByteBuffer buff = super.getBodyBuffer();
this.ringSetIndex = DataFormat.bytes2int(new byte[]{0, 0, buff.get(), buff.get()});
}
public int getRingSetIndex() {
return this.ringSetIndex;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -