001: /*
002: * BEGIN_HEADER - DO NOT EDIT
003: *
004: * The contents of this file are subject to the terms
005: * of the Common Development and Distribution License
006: * (the "License"). You may not use this file except
007: * in compliance with the License.
008: *
009: * You can obtain a copy of the license at
010: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
011: * See the License for the specific language governing
012: * permissions and limitations under the License.
013: *
014: * When distributing Covered Code, include this CDDL
015: * HEADER in each file and include the License file at
016: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
017: * If applicable add the following below this CDDL HEADER,
018: * with the fields enclosed by brackets "[]" replaced with
019: * your own identifying information: Portions Copyright
020: * [year] [name of copyright owner]
021: */
022:
023: /*
024: * @(#)ApplicationVerificationReportXMLConstants.java
025: * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026: *
027: * END_HEADER - DO NOT EDIT
028: */
029: package com.sun.esb.management.common.data.helper;
030:
031: import java.io.Serializable;
032:
033: /**
034: * XML constants required to parse or create Application Verification Report
035: *
036: * @author graj
037: *
038: */
039: public interface ApplicationVerificationReportXMLConstants extends
040: Serializable {
041:
042: // XML TAGS
043: public static final String VERSION_KEY = "version";
044:
045: public static final String VERSION_VALUE = "1.0";
046:
047: public static final String NAMESPACE_KEY = "xmlns";
048:
049: public static final String NAMESPACE_VALUE = "http://java.sun.com/xml/ns/esb/management/ApplicationVerificationReport";
050:
051: public static final String APPLICATION_VERIFICATION_REPORT_KEY = "ApplicationVerificationReport";
052:
053: public static final String SERVICE_ASSEMBLY_NAME_KEY = "ServiceAssemblyName";
054:
055: public static final String SERVICE_ASSEMBLY_DESCRIPTION_KEY = "ServiceAssemblyDescription";
056:
057: public static final String NUMBER_OF_SERVICE_UNITS_KEY = "NumberOfServiceUnits";
058:
059: public static final String ALL_COMPONENTS_INSTALLED_KEY = "AllComponentsInstalled";
060:
061: public static final String MISSING_COMPONENTS_LIST_KEY = "MissingComponentsList";
062:
063: public static final String MISSING_COMPONENT_NAME_KEY = "MissingComponentName";
064:
065: public static final String ENDPOINT_INFORMATION_LIST_KEY = "EndpointInformationList";
066:
067: public static final String TEMPLATE_ZIPID_KEY = "TemplateZIPID";
068:
069: public static final String ENDPOINT_KEY = "Endpoint";
070:
071: public static final String ENDPOINT_NAME_KEY = "EndpointName";
072:
073: public static final String SERVICE_UNIT_NAME_KEY = "ServiceUnitName";
074:
075: public static final String COMPONENT_NAME_KEY = "ComponentName";
076:
077: public static final String STATUS_KEY = "Status";
078:
079: public static final String MISSING_APPVARS_KEY = "MissingApplicationVariables";
080:
081: public static final String MISSING_APPVAR_NAME_KEY = "ApplicationVariable";
082:
083: public static final String MISSING_APPCONFIGS_KEY = "MissingApplicationConfigurations";
084:
085: public static final String MISSING_APPCONFIG_NAME_KEY = "ApplicationConfiguration";
086:
087: public static final String JAVAEE_VERIFIER_REPORTS_LIST_KEY = "JavaEEVerifierReports";
088:
089: public static final String JAVAEE_VERIFIER_REPORT_KEY = "JavaEEVerifierReport";
090:
091: public static final String JAVAEE_VERIFIER_SERVICE_UNIT_NAME = "JavaEESUName";
092:
093: public static final String JAVAEE_VERIFIER_REPORT_TABLE_KEY = "JavaEEReportTable";
094:
095: public static final String JAVAEE_VERIFIER_REPORT_ITEM_KEY = "ReportItem";
096:
097: public static final String JAVAEE_VERIFIER_EAR_FILE_NAME_ITEM_KEY = "EarFileName";
098:
099: public static final String JAVAEE_VERIFIER_REFERENCE_BY_ITEM_KEY = "ReferenceBy";
100:
101: public static final String JAVAEE_VERIFIER_REFERENCE_CLASS_ITEM_KEY = "ReferenceClass";
102:
103: public static final String JAVAEE_VERIFIER_MESSAGE_ITEM_KEY = "Message";
104:
105: public static final String JAVAEE_VERIFIER_STATUS_ITEM_KEY = "JavaEEStat";
106:
107: public static final String JAVAEE_VERIFIER_JNDI_NAME_ITEM_KEY = "JndiName";
108:
109: public static final String JAVAEE_VERIFIER_JNDI_CLASS_ITEM_KEY = "JndiClass";
110:
111: }
|