/** * *************************************************************************** * 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.basic.constants; public final class ShiftFields { private ShiftFields() { } public static final String NAME = "name"; public static final String MONDAY_WORKING = "mondayWorking"; public static final String MONDAY_HOURS = "mondayHours"; public static final String TUESDAY_WORKING = "tuesdayWorking"; public static final String TUESDAY_HOURS = "tuesdayHours"; public static final String WENSDAY_WORKING = "wensdayWorking"; public static final String WENSDAY_HOURS = "wensdayHours"; public static final String THURSDAY_WORKING = "thursdayWorking"; public static final String THURSDAY_HOURS = "thursdayHours"; public static final String FRIDAY_WORKING = "fridayWorking"; public static final String FRIDAY_HOURS = "fridayHours"; public static final String SATURDAY_WORKING = "saturdayWorking"; public static final String SATURDAY_HOURS = "saturdayHours"; public static final String SUNDAY_WORKING = "sundayWorking"; public static final String SUNDAY_HOURS = "sundayHours"; public static final String TIMETABLE_EXCEPTIONS = "timetableExceptions"; }