?? owauthorizeresult.java
字號:
// ----------------------------------------------------------------------------
// $Source: /cvs/vas2006/webpro2/webpro_java/src/com/onewaveinc/portalman/webpro/entity/OWAuthorizeResult.java,v $
// ----------------------------------------------------------------------------
// Copyright (c) 2002 by Onewave Inc.
// ----------------------------------------------------------------------------
// $Id: OWAuthorizeResult.java,v 1.1.1.1 2006/08/01 05:49:33 zhengx Exp $
// ----------------------------------------------------------------------------
// $Log: OWAuthorizeResult.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.1 2005/12/08 10:37:18 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 OWAuthorizeResult extends OWEntityRootResult {
//expenditureMode=2下,返回的消費額度金額(單位為厘)
private String transactionID;//為ICP返回一個全局唯一的交易號。
private String jumpURL;//跳轉頁面, String 類型, 最長64位//返回的單位,0為按次,1為按時長,2為按流量//按次//時長
private long duration;
private long expenditure;
private long times;
private long volume;
private int unitType; //流量
public void setExpenditure(long expenditure) {
this.expenditure = expenditure;
}
public long getExpenditure() {
return expenditure;
}
public void setTransactionID(String transactionID) {
this.transactionID = transactionID;
}
public String getTransactionID() {
return transactionID;
}
public void setJumpURL(String jumpURL) {
this.jumpURL = jumpURL;
}
public String getJumpURL() {
return jumpURL;
}
public void setUnitType(int unitType) {
this.unitType = unitType;
}
public int getUnitType() {
return unitType;
}
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;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -