io.github.protocol.codec.cmpp.CmppDeliverBody Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package io.github.protocol.codec.cmpp;
public class CmppDeliverBody {
private long msgId;
private String destId;
private String serviceId;
private byte tpPid;
private byte tpUdhi;
private byte msgFmt;
private String srcTerminalId;
private byte srcTerminalType;
private byte registeredDelivery;
private byte msgLength;
private MsgContent msgContent;
private String linkId;
public long getMsgId() {
return msgId;
}
public void setMsgId(long msgId) {
this.msgId = msgId;
}
public String getDestId() {
return destId;
}
public void setDestId(String destId) {
this.destId = destId;
}
public String getServiceId() {
return serviceId;
}
public void setServiceId(String serviceId) {
this.serviceId = serviceId;
}
public byte getTpPid() {
return tpPid;
}
public void setTpPid(byte tpPid) {
this.tpPid = tpPid;
}
public byte getTpUdhi() {
return tpUdhi;
}
public void setTpUdhi(byte tpUdhi) {
this.tpUdhi = tpUdhi;
}
public byte getMsgFmt() {
return msgFmt;
}
public void setMsgFmt(byte msgFmt) {
this.msgFmt = msgFmt;
}
public String getSrcTerminalId() {
return srcTerminalId;
}
public void setSrcTerminalId(String srcTerminalId) {
this.srcTerminalId = srcTerminalId;
}
public byte getSrcTerminalType() {
return srcTerminalType;
}
public void setSrcTerminalType(byte srcTerminalType) {
this.srcTerminalType = srcTerminalType;
}
public byte getRegisteredDelivery() {
return registeredDelivery;
}
public void setRegisteredDelivery(byte registeredDelivery) {
this.registeredDelivery = registeredDelivery;
}
public byte getMsgLength() {
return msgLength;
}
public void setMsgLength(byte msgLength) {
this.msgLength = msgLength;
}
public MsgContent getMsgContent() {
return msgContent;
}
public void setMsgContent(MsgContent msgContent) {
this.msgContent = msgContent;
}
public String getLinkId() {
return linkId;
}
public void setLinkId(String linkId) {
this.linkId = linkId;
}
}