MinistryMemberConstants.java

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

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

  6.     /** The member column order. */
  7.     // Grid Configuration
  8.     String[] MEMBER_COLUMN_ORDER = { "roleCode", "roleId", "personId", "firstName",
  9.             "lastName", "party", "active", "totalDaysServed", "detail", "fromDate", "toDate" };

  10.     /** The member hide columns. */
  11.     String[] MEMBER_HIDE_COLUMNS = { "roleId", "personId", "detail" };

  12.     /** The member history. */
  13.     // Grid Names with analytical focus
  14.     String MEMBER_HISTORY = "Membership Pattern Analysis";

  15.     /** The current members. */
  16.     String CURRENT_MEMBERS = "Active Membership Distribution";

  17.     /** The temporal metrics. */
  18.     String TEMPORAL_METRICS = "Temporal Distribution Analysis";

  19.     /** The position analytics. */
  20.     String POSITION_ANALYTICS = "Position Distribution Metrics";

  21.     /** The person id. */
  22.     // Properties
  23.     String PERSON_ID = "personId";

  24.     /** The role id. */
  25.     String ROLE_ID = "roleId";
  26. }