Skip to content
Permalink
861e393571
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
62 lines (40 sloc) 2.3 KB
/*--------------------------------------------------------------------------*
| Copyright (C) 2006 Gereon Fassbender, Christopher Kohlhaas |
| |
| This program is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by the |
| Free Software Foundation. A copy of the license has been included with |
| these distribution in the COPYING file, if not go to www.fsf.org |
| |
| As a special exception, you are granted the permissions to link this |
| program with every library, which license fulfills the Open Source |
| Definition as published by the Open Source Initiative (OSI). |
*--------------------------------------------------------------------------*/
package org.rapla.entities.dynamictype;
// This class holds all of strings for the program
public interface DynamicTypeAnnotations
{
String KEY_NAME_FORMAT="nameformat";
String KEY_NAME_FORMAT_PLANNING="nameformat_planning";
String KEY_NAME_FORMAT_EXPORT="nameformat_export";
// This section contains strings that are applied to the organization of the calendar
String KEY_CLASSIFICATION_TYPE="classification-type";
String VALUE_CLASSIFICATION_TYPE_RESOURCE="resource";
String VALUE_CLASSIFICATION_TYPE_RESERVATION="reservation";
String VALUE_CLASSIFICATION_TYPE_PERSON="person";
String VALUE_CLASSIFICATION_TYPE_RAPLATYPE="rapla";
//Added enhancement, Creates a sub-Event string to be added to the calendar
// Our enhancement is added in this section, due to its organizational purposes
String VALUE_CLASSIFICATION_TYPE_SUBEVENT="subEvent";
String KEY_COLORS="colors";
String VALUE_COLORS_AUTOMATED = "rapla:automated";
String VALUE_COLORS_COLOR_ATTRIBUTE = "color";
String VALUE_COLORS_DISABLED = "rapla:disabled";
String KEY_CONFLICTS="conflicts";
String VALUE_CONFLICTS_NONE="never";
String VALUE_CONFLICTS_ALWAYS="always";
String VALUE_CONFLICTS_WITH_OTHER_TYPES="withOtherTypes";
String KEY_TRANSFERED_TO_CLIENT = "transferedToClient";
String VALUE_TRANSFERED_TO_CLIENT_NEVER = "never";
String KEY_LOCATION="location";
}