8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster/**
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster*
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* Copyright (c) 2008 Sun Microsystems, Inc. All Rights Reserved.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster*
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* The contents of this file are subject to the terms
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* of the Common Development and Distribution License
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* (the License). You may not use this file except in
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* compliance with the License.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster*
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* You can obtain a copy of the License at
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* https://opensso.dev.java.net/public/CDDLv1.0.html or
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* opensso/legal/CDDLv1.0.txt
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* See the License for the specific language governing
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* permission and limitations under the License.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster*
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* When distributing Covered Code, include this CDDL
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* Header Notice in each file and include the License file
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* at opensso/legal/CDDLv1.0.txt.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* If applicable, add the following below the CDDL Header,
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* with the fields enclosed by brackets [] replaced by
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* your own identifying information:
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* "Portions Copyrighted [year] [name of copyright owner]"
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster*
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster* $Id: ManifestConstants.java,v 1.3 2008/09/22 20:49:27 kevinserwin Exp $
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster*/
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterpackage com.sun.identity.tools.manifest;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Fosterpublic interface ManifestConstants {
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String MANIFEST_CREATE_FILE = "file.dest.path";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String DRYRUN_OPTION = "option.dryrun";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String VERBOSE_OPTION = "option.verbose";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String DEFAULT_VERBOSE = "false";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String LATEST_WAR_FILE = "file.war.latest";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String PROPERTIES_FILE = "file.properties";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String IDENTIFIER_ENTRY = "entry.identifier";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String DEFAULT_IDENTIFIER_ENTRY = "identifier";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String MANIFEST_PATTERN = "pattern.manifest";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String MANIFEST_FILE_NAME = "filename.manifest";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String DEFAULT_MANIFEST_FILE_NAME = "manifest.manifest";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String WILDCARD_CHAR = "pattern.wildcard";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String DEFAULT_MANIFEST_PATTERN = "*.manifest";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String DEFAULT_WILDCARD_CHAR ="*";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String DELETE_SUFFIX = "delete";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String ALL_SUFFIX = "all";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String IDENTIFIER_SEPARATOR = ".";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster public static final String VERSION_FILE = "file.version";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster int BUFFER_SIZE = 8192;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String SHA1 = "SHA1";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String DEFAULT_RECURSIVE = "true";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String EQUAL = "=";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String FILE_SEPARATOR = "/";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster char DEFAULT_WILD_CARD = '*';
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String PATTERN_SEPARATOR = ",";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String HEADER_FILE_PATH = "file.header.path";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String SRC_FILE_PATH = "file.src.path";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String DEST_FILE_PATH = "file.dest.path";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String RECURSIVE = "file.recursive";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String INCLUDE_PATTERN = "file.include";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String EXCLUDE_PATTERN = "file.exclude";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String MANIFEST_NAME = "name.manifest";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String DIGEST_ALG = "digest.alg";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String DIGEST_HANDLEJAR = "digest.handlejar";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String DEFAULT_DIGEST_HANDLEJAR = "true";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String DIGEST_HANDLEWAR = "digest.handlewar";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String DEFAULT_DIGEST_HANDLEWAR = "true";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String JAR_FILE_EXT = ".jar";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String WAR_FILE_EXT = ".war";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String OVERWRITE = "file.overwrite";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster String DEFAULT_OVERWRITE = "true";
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster}