⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 owauthorizerequest.java

📁 陕西电信sp客户端
💻 JAVA
字号:
// ----------------------------------------------------------------------------
// $Source: /cvs/vas2006/webpro2/webpro_java/src/com/onewaveinc/portalman/aaa/v20/soapentity/OWAuthorizeRequest.java,v $
// ----------------------------------------------------------------------------
// Copyright (c) 2002 by Onewave Inc.
// ----------------------------------------------------------------------------
// $Id: OWAuthorizeRequest.java,v 1.1.1.1 2006/08/01 05:49:33 zhengx Exp $
// ----------------------------------------------------------------------------
// $Log: OWAuthorizeRequest.java,v $
// Revision 1.1.1.1  2006/08/01 05:49:33  zhengx
// no message
//
// Revision 1.1  2006/06/02 03:33:14  wuyan
// *** empty log message ***
//
// Revision 1.1  2005/12/08 10:34:58  like
// no message
//
// Revision 1.2  2005/12/08 09:16:26  like
// no message
//
// Revision 1.1  2003/07/28 06:29:30  zengc
// no message
//
// Revision 1.2  2003/04/09 09:19:18  zengc
// no message
//
// Revision 1.1  2003/02/28 03:26:19  zengc
// V20
//

// ----------------------------------------------------------------------------

package com.onewaveinc.portalman.aaa.v20.soapentity;

/**
 * <p>Title: PortalMAN SDK API Documentation</p>
 * <p>Description: OneWave Technologies., Inc. PortalMAN Value-add Management Platform 3rd Software Development Kit</p>
 * <p>Copyright: Copyright (c) 2002 </p>
 * <p>Company: OneWave Technologies., Inc.</p>
 * @author 3rd AAA & ICP Integration Developement Team
 * @version 1.5
 */

public class OWAuthorizeRequest extends OWEntityRoot {

	private String vnetLoginName;      //Vnet 客户统一登录名, String 类型, 最长64位
	private String icpMode;            //1——代收费模式;2——Vnet计费模式
	private String expenditure;        //需要检查消费额度的付费金额(单位为厘)
	private String expenditureMode;    //1——需要足额,否则授权失败;2——不需要足额,返回所有可用金额并冻结该金额
	private String transactionID;      //全局唯一的交易号。
	private String payAccountCheckMode;//0:由Vnet系统自动判断1:指明用在ADSL和163帐号中做检查2:指明用在充值卡帐号中做检查
	private String serviceCode;         //ICP发布在Vnet上的服务代码, String 类型, 最长256位
	private String returnURL;          //ICP需要强制跳回的URL
	private String times;              //如果该服务是按次计费的话,VNET系统应该为它冻结多少次的费用。
	private String duration;           //如果该服务是按时长计费的话,VNET系统应该为它冻结多少秒的费用
	private String volume;             //如果该服务是是按流量计费的话,VNET系统应该为它冻结多少KB的费用
	private String token;
	private String expireMinute;      //解冻时长,以分钟为单位,0为由系统自动解冻
	private String productInfo;       //产品信息, String 类型, 最长64位


	public String getVnetLoginName() {
		return vnetLoginName;
	}
	public void setVnetLoginName(String vnetLoginName) {
		this.vnetLoginName = vnetLoginName;
	}
	public void setIcpMode(String icpMode) {
		this.icpMode = icpMode;
	}
	public String getIcpMode() {
		return icpMode;
	}
	public void setExpenditure(String expenditure) {
		this.expenditure = expenditure;
	}
	public String getExpenditure() {
		return expenditure;
	}
	public void setExpenditureMode(String expenditureMode) {
		this.expenditureMode = expenditureMode;
	}
	public String getExpenditureMode() {
		return expenditureMode;
	}
	public void setTransactionID(String transactionID) {
		this.transactionID = transactionID;
	}
	public String getTransactionID() {
		return transactionID;
	}
	public void setPayAccountCheckMode(String payAccountCheckMode) {
		this.payAccountCheckMode = payAccountCheckMode;
	}
	public String getPayAccountCheckMode() {
		return payAccountCheckMode;
	}
	public void setServiceCode(String serviceCode) {
		this.serviceCode = serviceCode;
	}
	public String getServiceCode() {
		return serviceCode;
	}
	public void setReturnURL(String returnURL) {
		this.returnURL = returnURL;
	}
	public String getReturnURL() {
		return returnURL;
	}
	public void setTimes(String times) {
		this.times = times;
	}
	public String getTimes() {
		return times;
	}
	public void setDuration(String duration) {
		this.duration = duration;
	}
	public String getDuration() {
		return duration;
	}
	public void setVolume(String volume) {
		this.volume = volume;
	}
	public String getVolume() {
		return volume;
	}
	public void setToken(String token) {
		this.token = token;
	}
	public String getToken() {
		return token;
	}
	public void setExpireMinute(String expireMinute) {
		this.expireMinute = expireMinute;
	}
	public String getExpireMinute() {
		return expireMinute;
	}
	public void setProductInfo(String productInfo) {
		this.productInfo = productInfo;
	}
	public String getProductInfo() {
		return productInfo;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -