OSDN Git Service

CVSリポジトリから移行。
[uguu-sysman/repo.git] / uguu-sysman-web / src / java / jp / gr / java_conf / uguu / sysman / web / constant / ServletContextConstant.java
1 /*
2  * Copyright (C) 2005 uguu, All Rights Reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  *    1. Redistributions of source code must retain the above copyright
9  *       notice, this list of conditions and the following disclaimer.
10  *
11  *    2. Redistributions in binary form must reproduce the above copyright
12  *       notice, this list of conditions and the following disclaimer in the
13  *       documentation and/or other materials provided with the distribution.
14  *
15  *    3. Neither the name of Clarkware Consulting, Inc. nor the names of its
16  *       contributors may be used to endorse or promote products derived
17  *       from this software without prior written permission. For written
18  *       permission, please contact clarkware@clarkware.com.
19  *
20  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
21  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
22  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
23  * CLARKWARE CONSULTING OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
26  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28  * NEGLIGENCE OR OTHERWISE) ARISING IN  ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 package jp.gr.java_conf.uguu.sysman.web.constant;
32
33 /**
34  * <p>
35  * サーブレット コンテキストに格納するインスタンスのキーを定義しています。
36  * </p>
37  * @author  uguu
38  */
39 public final class ServletContextConstant {
40     /**
41      * <p>スケジューラを格納するキー。</p>
42      */
43     public static final String  SCHEDULER = "jp.gr.java_conf.uguu.sysman.web.scheduler";
44     /**
45      * <p>
46      * インスタンスの生成を禁止します。
47      * </p>
48      */
49     private ServletContextConstant() {
50         throw new UnsupportedOperationException();
51     }
52 }