IAdminTool.java revision 3da5cf3207e849bd28031a5ef5e4550605fd66ed
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell/**
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell *
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell *
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * The contents of this file are subject to the terms
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * of the Common Development and Distribution License
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * (the License). You may not use this file except in
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * compliance with the License.
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell *
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * You can obtain a copy of the License at
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * https://opensso.dev.java.net/public/CDDLv1.0.html or
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * opensso/legal/CDDLv1.0.txt
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * See the License for the specific language governing
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * permission and limitations under the License.
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell *
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * When distributing Covered Code, include this CDDL
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * Header Notice in each file and include the License file
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * at opensso/legal/CDDLv1.0.txt.
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * If applicable, add the following below the CDDL Header,
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * with the fields enclosed by brackets [] replaced by
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * your own identifying information:
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * "Portions Copyrighted [year] [name of copyright owner]"
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell *
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * $Id: IAdminTool.java,v 1.2 2008/06/25 05:51:27 qcheng Exp $
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell *
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell */
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell/*
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell * Portions Copyrighted [2010] [ForgeRock AS]
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell */
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnellpackage com.sun.identity.install.tools.launch;
3fc1b5e9b2ff286cd528a06154cc998198de1e70Craig McDonnell
import java.util.List;
public interface IAdminTool {
public void run(List args);
public static final String STR_DEBUG_OPTION = "--debug";
public static final String PROP_PREFIX = "com.sun.identity.product.";
public static final String PROP_PRODUCT_HOME = PROP_PREFIX +
"install.home";
public static final String PROP_BIN_DIR = PROP_PREFIX + "bin.dir";
public static final String PROP_JCE_DIR = PROP_PREFIX + "jce.dir";
public static final String PROP_JSSE_DIR = PROP_PREFIX + "jsse.dir";
public static final String PROP_CONFIG_DIR = PROP_PREFIX + "config.dir";
public static final String PROP_LOCALE_DIR = PROP_PREFIX + "locale.dir";
public static final String PROP_LIB_DIR = PROP_PREFIX + "lib.dir";
public static final String PROP_LOGS_DIR = PROP_PREFIX + "logs.dir";
public static final String PROP_DATA_DIR = PROP_PREFIX + "data.dir";
public static final String PROP_ETC_DIR = PROP_PREFIX + "etc.dir";
public static final String PROP_DEBUG_ENABLED = PROP_PREFIX
+ "debug.enable";
public static final String PROP_REGISTER_JCE_PROVIDER = PROP_PREFIX
+ "register.jce.provider";
public static final String PROP_REGISTER_JSSE_PROVIDER = PROP_PREFIX
+ "register.jsse.provider";
}