📄 owauthorizerequest.java
字号:
// ----------------------------------------------------------------------------
// $Source: /cvs/vas2006/webpro2/webpro_java/src/com/onewaveinc/portalman/webpro/entity/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:16 wuyan
// *** empty log message ***
//
// Revision 1.2 2006/05/17 12:13:42 lufang
// no message
//
// Revision 1.1 2005/12/08 10:37:18 like
// no message
//
// Revision 1.2 2005/12/08 09:16:26 like
// no message
//
// Revision 1.1 2003/07/28 06:31:03 zengc
// no message
//
// ----------------------------------------------------------------------------
package com.onewaveinc.portalman.webpro.entity;
/**
* <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;
private String transactionID;
private String serviceCode;
private String returnURL;
private String token;
private long duration;
private long expenditure;
private int expenditureMode;
private int payAccountCheckMode;
private long volume;
private long times;
private long expireMinute; //解冻时长,以分钟为单位,0为由系统自动解冻
private String productInfo; //产品信息, String 类型, 最长64位
private String icpLoginName; //yedq 06-04-10
public String getVnetLoginName() {
return vnetLoginName;
}
public void setVnetLoginName(String vnetLoginName) {
this.vnetLoginName = vnetLoginName;
}
public void setExpenditure(long expenditure) {
this.expenditure = expenditure;
}
public long getExpenditure() {
return expenditure;
}
public void setExpenditureMode(int expenditureMode) {
this.expenditureMode = expenditureMode;
}
public int getExpenditureMode() {
return expenditureMode;
}
public void setTransactionID(String transactionID) {
this.transactionID = transactionID;
}
public String getTransactionID() {
return transactionID;
}
public void setPayAccountCheckMode(int payAccountCheckMode) {
this.payAccountCheckMode = payAccountCheckMode;
}
public int 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(long times) {
this.times = times;
}
public long getTimes() {
return times;
}
public void setDuration(long duration) {
this.duration = duration;
}
public long getDuration() {
return duration;
}
public void setVolume(long volume) {
this.volume = volume;
}
public long getVolume() {
return volume;
}
public void setToken(String token) {
this.token = token;
}
public String getToken() {
return token;
}
public void setExpireMinute(long expireMinute) {
this.expireMinute = expireMinute;
}
public long getExpireMinute() {
return expireMinute;
}
public void setProductInfo(String productInfo) {
this.productInfo = productInfo;
}
public String getProductInfo() {
return productInfo;
}
public String getIcpLoginName() {
return icpLoginName;
}
public void setIcpLoginName(String icpLoginName) {
this.icpLoginName = icpLoginName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -