KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > derby > ui > common > CommonNames


1 /*
2
3     Derby - Class org.apache.derby.ui.common.CommonNames
4     
5     Licensed to the Apache Software Foundation (ASF) under one or more
6     contributor license agreements. See the NOTICE file distributed with
7     this work for additional information regarding copyright ownership.
8     The ASF licenses this file to you under the Apache License, Version 2.0
9     (the "License"); you may not use this file except in compliance with
10     the License. You may obtain a copy of the License at
11     
12        http://www.apache.org/licenses/LICENSE-2.0
13     
14     Unless required by applicable law or agreed to in writing, software
15     distributed under the License is distributed on an "AS IS" BASIS,
16     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17     See the License for the specific language governing permissions and
18     limitations under the License.
19
20 */

21
22 package org.apache.derby.ui.common;
23
24
25 public class CommonNames {
26     //Network Server related
27
public static String JavaDoc DERBY_SERVER_CLASS="org.apache.derby.drda.NetworkServerControl";
28     public static String JavaDoc DERBY_SERVER="Derby Network Server";
29     public static String JavaDoc START_DERBY_SERVER="start";
30     public static String JavaDoc SHUTDOWN_DERBY_SERVER="shutdown";
31     
32     //Tools related
33
public static String JavaDoc SYSINFO_CLASS="org.apache.derby.tools.sysinfo";
34     public static String JavaDoc SYSINFO="SYSINFO";
35     public static String JavaDoc IJ_CLASS="org.apache.derby.tools.ij";
36     public static String JavaDoc IJ="IJ";
37     public static String JavaDoc SQL_SCRIPT="SQL Script";
38     
39     //actual information
40
public static String JavaDoc CORE_PATH="org.apache.derby.core";
41     public static String JavaDoc UI_PATH="org.apache.derby.ui";
42     public static String JavaDoc PLUGIN_NAME="Apache Derby Ui Plug-in";
43     
44     //The next to be used with UI_PATH for adding nature. isrunning and decorator
45
public static String JavaDoc DERBY_NATURE=UI_PATH+"."+"derbyEngine";
46     public static String JavaDoc ISRUNNING="isrun";
47     public static String JavaDoc RUNDECORATOR=UI_PATH+"."+"DerbyIsRunningDecorator";
48     
49     //Launch Config Types
50
public static String JavaDoc START_SERVER_LAUNCH_CONFIG_TYPE=UI_PATH+".startDerbyServerLaunchConfigurationType";
51     public static String JavaDoc STOP_SERVER_LAUNCH_CONFIG_TYPE=UI_PATH+".stopDerbyServerLaunchConfigurationType";
52     public static String JavaDoc IJ_LAUNCH_CONFIG_TYPE=UI_PATH+".ijDerbyLaunchConfigurationType";
53     public static String JavaDoc SYSINFO_LAUNCH_CONFIG_TYPE=UI_PATH+".sysinfoDerbyLaunchConfigurationType";
54     
55     //JVM Poperties
56
public static String JavaDoc D_IJ_PROTOCOL=" -Dij.protocol=";
57     public static String JavaDoc DERBY_PROTOCOL="jdbc:derby:";
58     public static String JavaDoc D_SYSTEM_HOME=" -Dderby.system.home=";
59     
60 }
61
Popular Tags