/** * *************************************************************************** * Copyright (c) 2010 Qcadoo Limited * Project: Qcadoo MES * Version: 1.4 * * This file is part of Qcadoo. * * Qcadoo is free software; you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published * by the Free Software Foundation; either version 3 of the License, * or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * *************************************************************************** */ package com.qcadoo.mes.assignmentToShift.constants; public final class AssignmentToShiftFields { public static final String CREW = "crew"; private AssignmentToShiftFields() { } public static final String START_DATE = "startDate"; public static final String SHIFT = "shift"; public static final String FACTORY = "factory"; public static final String APPROVED_ATTENDANCE_LIST = "approvedAttendanceList"; public static final String STAFF_ASSIGNMENT_TO_SHIFTS = "staffAssignmentToShifts"; public static final String PLANNED_STAFF_ASSIGNMENT_TO_SHIFTS = "plannedStaffAssignmentToShifts"; public static final String CORRECTED_STAFF_ASSIGNMENT_TO_SHIFTS = "correctedStaffAssignmentToShifts"; public static final String EXTERNAL_NUMBER = "externalNumber"; public static final String EXTERNAL_SYNCHRONIZED = "externalSynchronized"; public static final String STATE = "state"; public static final String STATE_CHANGES = "assignmentToShiftStateChange"; public static final String SHOW_LAST_STATE_CHANGE_RESULT = "showLastStateChangeResult"; public static final String LAST_STATE_CHANGE_FAILS = "lastStateChangeFails"; public static final String LAST_STATE_CHANGE_FAIL_CAUSE = "lastStateChangeFailCause"; }