/*
 * Licensed Materials - Property of Rogue Wave Software, Inc. 
 * © Copyright Rogue Wave Software, Inc. 2014, 2015 
 * © Copyright IBM Corp. 2009, 2014
 * © Copyright ILOG 1996, 2009
 * All Rights Reserved.
 *
 * Note to U.S. Government Users Restricted Rights:
 * The Software and Documentation were developed at private expense and
 * are "Commercial Items" as that term is defined at 48 CFR 2.101,
 * consisting of "Commercial Computer Software" and
 * "Commercial Computer Software Documentation", as such terms are
 * used in 48 CFR 12.212 or 48 CFR 227.7202-1 through 227.7202-4,
 * as applicable.
 */

package monitoring.web;

/**
 * This class defines some constants that are used by the sample.
 */
public class SampleConstants {

  /**
   * The name of the configuration file that is to be used when the network module's 
   * network component is displaying its root objects.
   */
  public final static String NETWORK_NETWORK_ROOT_CONFIG_FILE = "networkRootConfig.css";
  /**
   * The name of the configuration file that is to be used when the inventory module's 
   * equipment component is displaying its root objects.
   */
  public final static String INVENTORY_EQUIPMENT_ROOT_CONFIG_FILE = "inventoryRootConfig.css";
  /**
   * Identifier of the network module's network JSF view.
   * <p>
   * This needs to be in synch with the JSP: /main-area/network-network-view.jsp    
   */
  public static final String NETWORK_NETWORK_COMPONENT_ID = "networkNetworkView";
  /**
   * Identifier of the service module's network JSF view.
   * <p>
   * This needs to be in synch with the JSP: /main-area/service-network-view.jsp
   */
  public static final String SERVICE_NETWORK_COMPONENT_ID = "serviceNetworkView";
  /**
   * Identifier of the inventory module's equipment JSF view.
   * <p>
   * This needs to be in synch with the JSP: /main-area/inventory-equipment-view.jsp
   */
  public static final String INVENTORY_EQUIPMENT_COMPONENT_ID = "inventoryEquipmentView";
  /**
   * Identifier of the service module's service details network JSF view.
   * <p>
   * This needs to be in synch with the JSP: /main-area/service-detail-network-view.jsp    
   */
  public static final String SERVICE_DETAIL_NETWORK_COMPONENT_ID = "serviceDetailNetworkView";
  /**
   * The name of the styles file that is to be used by the network module's 
   * network component.
   */
  public static final String NETWORK_NETWORK_STYLESHEETS = "networkModule.css";
  /**
   * The name of the styles file that is to be used by the service module's 
   * network component.
   */
  public static final String SERVICE_NETWORK_STYLESHEETS = "serviceModule.css";
  /**
   * The name of the styles file that is to be used by the inventory module's 
   * equipment component.
   */
  public static final String INVENTORY_EQUIPMENT_STYLESHEETS = "inventoryModule.css";
  /**
   * The name of the styles file that is to be used by the service module's 
   * service detail network component.
   */
  public static final String SERVICE_DETAIL_NETWORK_STYLESHEETS = "serviceDetail.css";
  /**
   * The name of the resource bundle file to be used by the sample.
   */
  public static final String SAMPLE_RESOURCE_BUNDLE = "SampleMessages";  
}