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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? 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/03/15 13:12:10 $
 * 
 * Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
 */
/*
 * Const.java
 *
 * Created on October 10, 2005, 4:10 PM
 *
 * To change this template, choose Tools | Options and locate the template under
 * the Source Creation and Management node. Right-click the template and choose
 * Open. You can then make changes to the template in the Source Editor.
 */

package com.sun.sjc.idtv.vod.server.comm;

public class Const {
    
    /** Creates a new instance of Const */
    public Const() {
    }
    
    /**
     * Defines all constants used in D15N Server
     *
     */
    /**
     * 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 = "Password invalid Authentication failed";
    
    
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
www.在线欧美| 欧洲人成人精品| 五月综合激情日本mⅴ| www国产精品av| 欧美私人免费视频| 91香蕉视频黄| 国产精品伊人色| 日韩高清在线电影| 一区二区三区不卡在线观看| 久久精品夜色噜噜亚洲a∨| 欧美精品在线一区二区| 91免费小视频| 成人一区二区三区在线观看| 麻豆91精品视频| 日本女优在线视频一区二区| 亚洲自拍另类综合| 亚洲欧美日韩综合aⅴ视频| 国产色产综合色产在线视频 | 6080yy午夜一二三区久久| 成人av网址在线| 国产高清亚洲一区| 久久91精品久久久久久秒播| 日韩电影在线一区二区| 亚洲国产精品天堂| 亚洲夂夂婷婷色拍ww47| 亚洲免费观看高清完整版在线| 亚洲国产精品ⅴa在线观看| 精品1区2区在线观看| 日韩欧美一区二区三区在线| 制服丝袜激情欧洲亚洲| 777色狠狠一区二区三区| 欧美色图第一页| 欧美性生交片4| 欧美日韩精品一区二区在线播放| 在线看不卡av| 在线欧美小视频| 在线观看视频一区二区| 欧美在线观看你懂的| 欧洲另类一二三四区| 欧美日韩亚洲综合在线 | 6080日韩午夜伦伦午夜伦| 欧美日韩国产综合一区二区三区| 欧美亚洲动漫精品| 欧美乱熟臀69xxxxxx| 欧美福利视频一区| 欧美一区二区三区成人| 欧美tk—视频vk| 国产视频一区在线播放| 国产精品久久久久久久浪潮网站| 国产精品美女久久久久久久网站| 国产精品免费人成网站| 亚洲日本免费电影| 亚洲永久免费av| 蜜臀精品一区二区三区在线观看| 黑人巨大精品欧美黑白配亚洲| 黄色精品一二区| 成人h版在线观看| 欧美视频一区二区在线观看| 日韩欧美中文一区| 久久免费视频色| 亚洲人成精品久久久久| 亚洲777理论| 韩国av一区二区三区四区| 成人激情免费电影网址| 在线观看亚洲a| 欧美r级电影在线观看| 国产精品国产三级国产普通话99 | 亚洲人成影院在线观看| 视频一区欧美日韩| 国产精品资源网站| 色噜噜狠狠成人网p站| 欧美一区二区三区日韩| 久久精品欧美一区二区三区不卡| 中文字幕综合网| 日韩av不卡一区二区| 国产mv日韩mv欧美| 欧美日韩国产影片| 日本一区二区免费在线| 亚洲成av人片在线观看| 国产黑丝在线一区二区三区| 欧美四级电影在线观看| 国产亚洲综合av| 首页亚洲欧美制服丝腿| 丰满岳乱妇一区二区三区| 777午夜精品视频在线播放| 亚洲国产高清aⅴ视频| 图片区小说区区亚洲影院| 国产成人精品午夜视频免费| 精品视频在线免费看| 久久综合九色综合97婷婷女人| 一区二区三区毛片| 国产呦精品一区二区三区网站| 欧美性生活影院| 国产精品动漫网站| 精品一区二区三区香蕉蜜桃| 在线看国产一区二区| 欧美激情综合在线| 蜜桃av噜噜一区| 欧美日韩精品久久久| 国产精品欧美一区二区三区| 麻豆精品蜜桃视频网站| 欧美午夜影院一区| 亚洲丝袜精品丝袜在线| 国产一区二区三区在线观看免费视频 | 一区二区三区在线影院| 亚洲视频一二三| 爽好久久久欧美精品| 99久久精品国产一区| 91精品国产aⅴ一区二区| 1区2区3区精品视频| 日本v片在线高清不卡在线观看| 成人午夜av影视| 2020日本不卡一区二区视频| 首页亚洲欧美制服丝腿| 色噜噜狠狠色综合欧洲selulu| 国产精品色一区二区三区| 精品亚洲国内自在自线福利| 欧美蜜桃一区二区三区| 中文字幕视频一区| 国产精品1024| 久久综合久色欧美综合狠狠| 秋霞影院一区二区| 欧美老肥妇做.爰bbww视频| 亚洲乱码国产乱码精品精98午夜 | 懂色av一区二区在线播放| 日韩一区和二区| 午夜精品免费在线观看| 在线精品视频一区二区| 悠悠色在线精品| 一本色道亚洲精品aⅴ| 亚洲视频免费在线| 色综合激情五月| 亚洲精品乱码久久久久久久久| 99久久精品国产精品久久| 国产精品欧美精品| 国产69精品久久99不卡| 久久久久久久久久久久电影| 国产一区二区福利视频| 国产欧美综合在线| 成人手机电影网| 亚洲欧美在线观看| 91理论电影在线观看| 亚洲美女精品一区| 欧美日韩电影一区| 蜜芽一区二区三区| www久久精品| 粉嫩嫩av羞羞动漫久久久| 国产精品久久久久婷婷| 日本福利一区二区| 图片区小说区国产精品视频| 欧美一区午夜视频在线观看| 激情欧美一区二区| 国产欧美精品日韩区二区麻豆天美| 国产a久久麻豆| 国产精品二三区| 欧美日韩一区二区三区高清| 日本成人超碰在线观看| 久久久久久久久久久久久女国产乱| 岛国av在线一区| 亚洲黄色小说网站| 欧美嫩在线观看| 国产精品12区| 亚洲制服丝袜一区| 精品国产乱码久久久久久图片| 国产精品主播直播| 综合久久给合久久狠狠狠97色 | 精品制服美女久久| 中文字幕高清不卡| 色视频欧美一区二区三区| 亚洲国产精品一区二区久久| 26uuu亚洲综合色欧美| 色综合色综合色综合 | 日本美女一区二区三区| 久久精品网站免费观看| 91麻豆swag| 乱中年女人伦av一区二区| 国产精品三级av| 欧美浪妇xxxx高跟鞋交| 国产成人av福利| 亚洲亚洲精品在线观看| 国产日产欧美一区| 欧美另类videos死尸| 国产成人aaa| 午夜精品福利久久久| 国产女人水真多18毛片18精品视频| 欧美色图片你懂的| 国产在线看一区| 亚洲成人先锋电影| 亚洲国产精品二十页| 91精品国产综合久久婷婷香蕉| 国产不卡视频一区二区三区| 日韩电影在线看| 中文字幕一区二区三区不卡| 欧美一区二区三区小说| 在线视频一区二区三| 国产精品一区免费在线观看| 日韩精品欧美精品| 最新国产精品久久精品| 26uuuu精品一区二区| 欧美精品免费视频|