亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? const.java

?? Sun公司Dream項目
?? JAVA
字號:
/*
 * The contents of this file are subject to the terms
 * of the Common Development and Distribution License
 * (the "License").  You may not use this file except
 * in compliance with the License.
 *
 * You can obtain a copy of the license at
 * http://www.opensource.org/licenses/cddl1.php
 * See the License for the specific language governing
 * permissions and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL
 * HEADER in each file and include the License file at
 * http://www.opensource.org/licenses/cddl1.php.  If 
 * applicable, add the following below this CDDL HEADER, 
 * with the fields enclosed by brackets "[]" replaced 
 * with your own identifying information: 
 * Portions Copyright [yyyy]
 * [name of copyright owner]
 */ 

/*
 * $(@)Const.java $Revision: 1.1.1.1 $ $Date: 2006/07/24 21:56:11 $
 * 
 * Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
 */




/*

 * @(#)Const.java  1.1 05/11/09

 *

 * Copyright 2002-2005 Sun Microsystems, Inc. All Rights Reserved.

 */





package com.sun.dream.shop;



/**

 * Defines all constants used in OperaServer

 *

 */

public final class Const {

	

	/**

	 * Constant to define the Action of a request.

	 */

    public static final String ACTION = "action";

    

    /**

     * Action constant for initial user registration constant.

     */

    public static final String REGISTER1 = "register1";

    

    /**

     * Action constant for submitting user's registration information.

     */

    public static final String REGISTER2 = "register2";

	

	/**

	 * Action constant for authenticating user registration.

	 */

	public static final String REGISTER3 = "register3";

	

	/**

	 * Action constant for initial shop registration.

	 */

	public static final String SHOP_REGISTRATION = "shop_registration";

	

	/**

	 * Action constant for submitting shop registration information.

	 */

	public static final String SHOP_REGISTRATION_SUBMIT =

		"shop_registration_submit";

	

	/**

	 * Action constant for initial user login.

	 */

	public static final String USER_LOGIN = "user_login";

	

	/**

	 * Action constant for validating user login information.

	 */

	public static final String USER_LOGIN_SUBMIT = "user_login_submit";

	

	/**

	 * Action constant for initial shop login.

	 */

	public static final String SHOP_LOGIN = "shop_login";

	

	/**

	 * Action constant for validating shop login information.

	 */

	public static final String SHOP_LOGIN_SUBMIT = "shop_login_submit";

	

	/**

	 * Action constant for storing license information.

	 */

	public static final String LICENSE_STORAGE = "store_license";

	

	/**

	 * Action constant for requesting refresh in validating user's license.

	 */

	public static final String REFRESH = "refresh";

	

	/**

	 * Action constant for license check.

	 */

	public static final String DRM_LICENSE_GENERATION = "check_license";

	

	/**

	 * Action constant for SIM number verification.

	 */

	public static final String SIM_VERIFICATION = "check_sim";

	

	/**

	 * Action constant for storing coupon information.

	 */

	public static final String COUPON_STORAGE = "store_coupon";

	

	/**

	 * Action constant for requisiting/claiming coupon.

	 */

	public static final String COUPON_REQUISITION = "coupon_requisition";



	/**

	 * Constant to define the Opera Proxy URL.

	 */

	public static final String PROXY_URL = "proxy_url";



	/**

	 * Constant to define the User ID.

	 */

	public static final String USERID = "userid";

    

    /**

     * Constant to define the Phone number.

     */

    public static final String PHONE = "phone";

	

	/**

	 * Constant to define the SIM Number.

	 */

	public static final String SIM = "simid";



	/**

	 * Constant to define the registration password.

	 */

	public static final String PASSWORD1 = "password1";

	

	/**

	 * Constant to define the confirmation registration password.

	 */

	public static final String PASSWORD2 = "password2";

	

	/**

	 * Constant to define the login password.

	 */

	public static final String PASSWORD = "password";



    /**

     * Constant to define the Shop ID.

     */

    public static final String SHOPID = "shopid";

	

	/**

	 * Constant to define the Shop's name.

	 */

	public static final String SHOP_NAME = "shopname";

	

	/**

	 * Constant to define the Shop's URL.

	 */

	public static final String SHOP_URL = "shopurl";

	

	/**

	 * Constant to define the License Server's URL.

	 */

	public static final String LICENSE_SERVER_URL = "license_server_url";



	/**

	 * Constant to define the Shop's success URL.

	 */

	public static final String SUCCESSURL = "successurl";

	

	/**

	 * Constant to define the Shop's error URL.

	 */

	public static final String ERRORURL = "errorurl";



    /**

     * Constant to define the Content ID.

     */

    public static final String CONTENTID = "content_id";



    /**

     * Constant to define the license type.

     */

    public static final String LICENSETYPE = "licensetype";

    

    /**

     * Constant to define the multiple of <code>fixed-use</code> license type.

     */

    public static final String MULTIPLE = "multiple";

    

    /**

     * Constant to define the start-time of <code>timebound</code> license type.

     */

    public static final String STARTTIME = "starttime";

    

    /**

     * Constant to define the end-time of <code>timebound</code> license type.

     */

    public static final String ENDTIME = "endtime";

    

    /**

     * Fixed-use license type.

     */

    public static final String FIXEDUSE = "fixeduse";

    

    /**

     * Time bound license type.

     */

    public static final String TIMEBOUND = "timebound";

    

    /**

     * Constant to define error.

     */

    public static final String ERROR = "error";



    /**

     * Prefix used in generating the user ID. For demo purposes only.

     */

    public static final String USERID_PREFIX = "operaUser";

    

    /**

     * Prefix used in generating the shop ID. For demo purposes only.

     */

    public static final String SHOPID_PREFIX = "operaShop";



    /**

     * The date pattern / format used in start-time and end-time. 

     */

    public static final String SIMPLE_DATE_PATTERN = "MM/dd/yyyy-kk:mm:ss";

    

	/**

	 * Constant to define the JSP file's path.

	 */

    public static final String JSP_PATH = "jsp_path";

    

    /**

     * The fixed-use license type constant.

     */

    public static final int FIXED_USE_LICENSE_TYPE = 0;

    

    /**

     * The time-bound license type constant.

     */

    public static final int TIME_BOUND_LICENSE_TYPE = 1;



    /**

     * Random key.

     */

    public static final String RANDOM_KEY = "random_key";

    

    /**

     * Constant to define timeout interval.

     */

    public static final String TIMEOUT_INTERVAL = "opera.timeout.interval";

    

    /**

     * Constant to define refresh interval.

     */

    public static final String REFRESH_INTERVAL = "opera.refresh.interval";

    

    /**

     * Constant to define email's domain.

     */

    public static final String MAIL_DOMAIN = "opera.mail.domain";

    

    /**

     * Constant to define email's subject.

     */

    public static final String MAIL_SUBJECT = "opera.mail.subject";

    

    /**

     * Constant to define email's origin (from).

     */

    public static final String MAIL_FROM = "opera.mail.from";

    

    /**

     * Constant to define license server URL.

     */

    public static final String LICENSE_SERVER = "opera.license.server";

	

	/**

	 * Constant to define private key (signature) assigned by license server.

	 */

	public static final String SIGNATURE = "opera.signature";

	

	/**

	 * Constant to define the method of SMS is sent.

	 */

	public static final String SMS_VIA = "opera.sendSMS.via";

	

	/**

	 * Timeout error message.

	 */

    public static final String MESSAGE_TIMEOUT = "timeout";

    

    /**

     * In progress message.

     */

    public static final String MESSAGE_IN_PROGRESS = "in_progress";

    

    /**

     * Verified message.

     */

    public static final String MESSAGE_VERIFIED = "verified";

    

    /**

     * Constant to define a message.

     */

    public static final String MESSAGE = "message";

    

    /**

     * Constant to define an error message.

     */

    public static final String ERROR_MESSAGE = "error_message";

    

    /**

     * Not supported error message. 

     */

    public static final String ERROR_NOT_SUPPORTED = "not_supported";

    

    /**

     * Limit exceeded error message.

     */

    public static final String ERROR_LIMIT_EXCEEDED ="limit_exceeded";

    

    /**

     * Expired error message.

     */

    public static final String ERROR_EXPIRED ="expired";

    

    /**

     * Failure error message.

     */

    public static final String ERROR_FAILURE ="failure";

    

    /**

     * Action constant for Content metadata.

     */

    public static final String CONTENT_METADATA = "content_metadata";

    

    /**

     * Constant to define the initial content's metadata. 

     */

    public static final String CONTENT_INITIAL_METADATA ="initial_metadata";

    

    /**

     * Constant to define the content's rating.

     */

    public static final String CONTENT_RATING = "rating";

	

	/**

	 * Constant to define the content's mime-type.

	 */

	public static final String CONTENT_MIME_TYPE = "mimetype";

	

	/**

	 * Constant to define the content's DRM type.

	 */

	public static final String CONTENT_DRM_TYPE = "drmtype";

	

	/**

	 * Constant to define the content's title.

	 */

	public static final String CONTENT_TITLE = "title";

    

    /**

     * Constant to define coupon id.

     */

    public static final String COUPONID = "couponid";

    

    /**

     * Constant to define the coupon's value.

     */

    public static final String COUPON_VALUE = "coupon_value";

    

    /**

     * Constant to define the coupon's description.

     */

    public static final String DESCRIPTION = "description";

    

    /**

     * Constant to define the expiration date.

     */

    public static final String EXPIRATION_DATE = "expire_date";

	

	/**

	 * Constant to define licenses.

	 */

	public static final String LICENSES = "licenses";

	

	/**

	 * Constant to define coupons.

	 */

	public static final String COUPONS = "coupons";

	

	/**

	 * Constant to define shops.

	 */

	public static final String SHOPS = "shops";

    

    /**

     * Success status constant.

     */

    public static final String SUCCESS = "success";

    

    /**

     * Constant to define the status.

     */

    public static final String STATUS = "status";

    

    /**

     * Save mode constant.

     */

    public static final String SAVE = "save";

    

    /**

     * Update mode constant.

     */

    public static final String UPDATE = "update";

	    

    /**

     * Constant to define the DMD-UID

     */

    public static final String DMDUID = "dmduid";

    

    /**

     * Constant to define if a repetitive request is made. 

     */

	public static final String RECALL = "recall";

	

	/**

	 * Name of the request parameter that indicates if the servlet

	 * should block on a DRM license request, or periodically

	 * send refresh pages. If the value of this parameter is "true"

	 * the servlet will return only after all validation has been

	 * done, or the request is timed out.

	 *

	 */

	public static final String BLOCK_ON_LICENSE_REQUEST_PARAM = "block_on_license_request";

	

	/**

	 * Constant to define signature / private key.

	 */	

	public static final String LICENSE_SIGNATURE = "signature";

	

	/**

	 * JDBC driver class name.

	 */

	public static final String DATABASE_DRIVER = "opera.database.driver";

	

	/**

	 * JDBC connection URL for connecting to the database, usually in the form of jdbc:subprotocol:subname

	 */

	public static final String DATABASE_URL = "opera.database.url";

	

	/**

	 * Database username

	 */

	public static final String DATABASE_USERNAME = "opera.database.username";

	

	/**

	 * Password used in pair with username to access database.

	 */

	public static final String DATABASE_PASSWORD = "opera.database.password";

	

	/**

	 * User full name

	 */

	public static final String USERNAME = "username";

	

	/**

	 * User email

	 */

	public static final String EMAIL = "email";

	

	public static final String DRM_TYPES = "opera.drm.types";

	

	public static final String ERROR_AUTHENTICATION_FAILED = "authentication_failed";

	

}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品亚洲第一区在线暖暖韩国| 亚洲视频在线一区| 国产三级一区二区| 中文字幕一区三区| 天天影视网天天综合色在线播放 | 色综合天天综合| 欧美日韩精品一区视频| 久久综合久久鬼色中文字| 一区在线观看免费| 青青草国产成人av片免费| 国产91精品露脸国语对白| 欧美视频三区在线播放| 久久这里只有精品视频网| 一区二区三区日韩精品视频| 美女视频一区在线观看| 91免费国产在线| 精品免费日韩av| 亚洲精品久久久久久国产精华液| 美女脱光内衣内裤视频久久网站 | 一区二区三区欧美激情| 国产综合色精品一区二区三区| 91激情在线视频| 国产日韩欧美高清| 日本欧美韩国一区三区| 91玉足脚交白嫩脚丫在线播放| 欧美大片在线观看一区二区| 夜夜揉揉日日人人青青一国产精品| 国产一区欧美二区| 欧美精品v国产精品v日韩精品| 国产精品免费看片| 麻豆久久久久久久| 欧美视频在线播放| 国产精品三级av| 狠狠色综合播放一区二区| 欧美无砖专区一中文字| 国产精品萝li| 国产伦精品一区二区三区在线观看| 欧美日韩午夜在线视频| 亚洲欧美日韩在线| 国内精品视频一区二区三区八戒| 欧美久久久久中文字幕| 亚洲精品欧美综合四区| 成人精品国产免费网站| 日韩精品一区在线观看| 天天操天天综合网| 在线精品视频免费播放| 亚洲欧洲国产专区| 国产福利一区在线| 欧美成人午夜电影| 欧美aaaaa成人免费观看视频| 欧美性大战久久| 夜夜嗨av一区二区三区中文字幕| 波多野结衣在线aⅴ中文字幕不卡| 精品国产污污免费网站入口 | xnxx国产精品| 久久精品99国产国产精| 91精品国产91久久久久久一区二区 | 日韩经典中文字幕一区| 日本久久电影网| 国产精品传媒入口麻豆| 国产成人精品1024| 国产欧美精品区一区二区三区| 国产在线精品一区二区| 精品少妇一区二区三区在线播放| 午夜电影网亚洲视频| 欧美区视频在线观看| 午夜精品久久久久影视| 欧美精品九九99久久| 视频一区欧美精品| 欧美高清精品3d| 日韩成人av影视| 欧美成人福利视频| 国产在线不卡视频| 国产亚洲午夜高清国产拍精品 | 性久久久久久久| 欧美日韩一区二区三区四区| 亚洲成人免费在线| 欧美一区二区三区色| 奇米色777欧美一区二区| 日韩精品中文字幕在线不卡尤物 | 久久综合国产精品| 韩国女主播成人在线| 国产日韩欧美高清| 成+人+亚洲+综合天堂| 亚洲免费在线电影| 欧美日韩在线精品一区二区三区激情| 亚洲国产精品一区二区www在线| 欧美高清视频不卡网| 久久精品国产精品亚洲红杏| 久久久久久久网| 91在线云播放| 天天影视涩香欲综合网| 日韩亚洲欧美中文三级| 国产精品一区二区三区乱码| 国产精品久久久久久久久免费相片 | 国产午夜精品一区二区三区嫩草| 国产乱子轮精品视频| 国产精品入口麻豆九色| 色综合天天狠狠| 石原莉奈在线亚洲三区| 久久久五月婷婷| 91丨porny丨蝌蚪视频| 天天av天天翘天天综合网色鬼国产 | 亚洲老司机在线| 欧美在线一区二区| 奇米影视7777精品一区二区| 国产亚洲综合在线| 91视频国产观看| 免费观看在线综合色| 国产日韩综合av| 在线观看日韩电影| 国产在线播放一区三区四| 中文字幕一区二| 欧美一三区三区四区免费在线看 | 亚洲天堂网中文字| 欧美一区二区三区在线| 成人污视频在线观看| 午夜激情一区二区| 国产日韩欧美高清在线| 欧美三级中文字幕| 高清国产一区二区三区| 亚洲国产欧美在线人成| 2023国产一二三区日本精品2022| 91麻豆自制传媒国产之光| 秋霞成人午夜伦在线观看| 国产精品美女久久久久久久久久久| 欧美日韩亚洲不卡| 成人一区在线看| 日本成人中文字幕| 亚洲女同一区二区| 久久亚洲精精品中文字幕早川悠里 | 国产精品色在线观看| 欧美一卡在线观看| 色综合久久久久综合99| 国产一区二区福利视频| 亚洲午夜精品网| 国产精品视频看| 精品久久久久99| 欧美色偷偷大香| 91免费精品国自产拍在线不卡| 看电影不卡的网站| 亚洲.国产.中文慕字在线| 中文字幕精品综合| 精品国产91亚洲一区二区三区婷婷| 在线一区二区视频| 成人综合婷婷国产精品久久| 乱一区二区av| 午夜激情一区二区| 亚洲女同女同女同女同女同69| 精品国产一区二区亚洲人成毛片| 欧美精选在线播放| 91国偷自产一区二区开放时间 | 亚洲色图20p| 久久人人超碰精品| 日韩欧美在线123| 在线观看www91| 欧美电影一区二区三区| 91丨porny丨在线| 成人福利视频在线看| 韩国欧美一区二区| 美国欧美日韩国产在线播放| 亚洲综合久久久| 亚洲日本va在线观看| 亚洲国产精品t66y| 久久婷婷色综合| 精品国产在天天线2019| 欧美一区二区网站| 3d成人h动漫网站入口| 精品视频一区 二区 三区| 91行情网站电视在线观看高清版| 成人av免费在线| 成人爱爱电影网址| 懂色av噜噜一区二区三区av| 国产精品综合在线视频| 国产一二三精品| 国产精品66部| 福利一区福利二区| 高清在线成人网| 成人黄色小视频在线观看| 国产91精品一区二区麻豆网站 | 国产精品网友自拍| 国产精品免费久久| 中文字幕在线不卡一区| 国产精品久久久久精k8| 国产免费久久精品| 中文天堂在线一区| 中文字幕亚洲在| 亚洲激情图片一区| 亚洲国产乱码最新视频| 亚洲国产精品一区二区久久恐怖片 | voyeur盗摄精品| 99r精品视频| 欧美性猛交xxxx黑人交| 欧美日韩综合色| 欧美狂野另类xxxxoooo| 日韩三区在线观看| 久久久不卡网国产精品二区| 久久久亚洲精华液精华液精华液| 国产农村妇女毛片精品久久麻豆| 国产精品护士白丝一区av|