Back to project page android_sdk.
The source code is released under:
GNU Lesser General Public License
If you think the Android project android_sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2013 Spunk Media Pvt Ltd (www.qubecell.com) *//*from ww w. ja v a 2 s.c o m*/ package com.qubecell.beans; /** * The MsisdnRespBean class is used to hold the msisdn response from server. * @author Eninov * */ public class MsisdnRespBean extends ResponseBaseBean{ private String message; private String requestid; private String msisdn; private String operator; private String txnid; public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String getRequestid() { return requestid; } public void setRequestid(String requestid) { this.requestid = requestid; } public String getMsisdn() { return msisdn; } public void setMsisdn(String msisdn) { this.msisdn = msisdn; } public String getOperator() { return operator; } public void setOperator(String operator) { this.operator = operator; } public String getTxnid() { return txnid; } public void setTxnid(String txnid) { this.txnid = txnid; } }