CommitteeGridConstants.java

  1. package com.hack23.cia.web.impl.ui.application.views.user.committee.pagemode;

  2. /**
  3.  * The Interface CommitteeGridConstants.
  4.  */
  5. public interface CommitteeGridConstants {

  6.     /** The member history grid name. */
  7.     // Member History Grid
  8.     String MEMBER_HISTORY_GRID_NAME = "Member History";

  9.     /** The member history column order. */
  10.     String[] MEMBER_HISTORY_COLUMN_ORDER = { "roleCode", "roleId", "personId", "firstName",
  11.             "lastName", "party", "active", "totalDaysServed", "detail", "fromDate", "toDate" };

  12.     /** The member history hidden columns. */
  13.     String[] MEMBER_HISTORY_HIDDEN_COLUMNS = { "roleId", "personId", "detail" };

  14.     /** The current members grid name. */
  15.     // Current Members Grid
  16.     String CURRENT_MEMBERS_GRID_NAME = "Current Members";

  17.     /** The current members hidden columns. */
  18.     String[] CURRENT_MEMBERS_HIDDEN_COLUMNS = { "roleId", "personId", "detail", "active" };

  19.     /** The document history grid name. */
  20.     // Document History Grid
  21.     String DOCUMENT_HISTORY_GRID_NAME = "Documents";

  22.     /** The document history column order. */
  23.     String[] DOCUMENT_HISTORY_COLUMN_ORDER = { "rm", "madePublicDate", "id", "docId",
  24.             "personReferenceId", "roleDescription", "title", "subTitle", "documentType", "subType",
  25.             "org", "label", "numberValue", "status", "tempLabel", "orderNumber", "referenceName",
  26.             "partyShortCode" };

  27.     /** The document history hidden columns. */
  28.     String[] DOCUMENT_HISTORY_HIDDEN_COLUMNS = { "id", "numberValue", "orderNumber", "tempLabel",
  29.             "personReferenceId", "org", "docId", "label", "roleDescription" };

  30.     /** The decision summary grid name. */
  31.     // Decision Summary Grid
  32.     String DECISION_SUMMARY_GRID_NAME = "Decision Summary";

  33.     /** The decision summary column order. */
  34.     String[] DECISION_SUMMARY_COLUMN_ORDER = { "createdDate", "publicDate", "committeeReport",
  35.             "embeddedId.hangarId", "embeddedId.id", "embeddedId.issueNummer", "rm", "decisionType",
  36.             "winner", "title", "header", "endNumber", "org", "committeeProposalUrlXml", "ballotId",
  37.             "againstProposalParties", "againstProposalNumber" };

  38.     /** The decision summary hidden columns. */
  39.     String[] DECISION_SUMMARY_HIDDEN_COLUMNS = { "embeddedId", "embeddedId.hangarId", "embeddedId.id",
  40.             "endNumber", "org", "committeeProposalUrlXml", "ballotId", "againstProposalParties",
  41.             "againstProposalNumber", "createdDate" };
  42. }