001// --------------------------------------------------------------------------------
002// Copyright 2002-2024 Echo Three, LLC
003//
004// Licensed under the Apache License, Version 2.0 (the "License");
005// you may not use this file except in compliance with the License.
006// You may obtain a copy of the License at
007//
008//     http://www.apache.org/licenses/LICENSE-2.0
009//
010// Unless required by applicable law or agreed to in writing, software
011// distributed under the License is distributed on an "AS IS" BASIS,
012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013// See the License for the specific language governing permissions and
014// limitations under the License.
015// --------------------------------------------------------------------------------
016
017package com.echothree.model.control.party.common;
018
019public interface PartyProperties {
020    
021    String DATE_TIME_FORMAT_NAME = "dateTimeFormatName";
022    String DESCRIPTION = "description";
023    String ENTITY_INSTANCE = "entityInstance";
024    String IS_DEFAULT = "isDefault";
025    String JAVA_ABBREV_DATE_FORMAT = "javaAbbrevDateFormat";
026    String JAVA_ABBREV_DATE_FORMAT_WEEKDAY = "javaAbbrevDateFormatWeekday";
027    String JAVA_LONG_DATE_FORMAT = "javaLongDateFormat";
028    String JAVA_LONG_DATE_FORMAT_WEEKDAY = "javaLongDateFormatWeekday";
029    String JAVA_SHORT_DATE_FORMAT = "javaShortDateFormat";
030    String JAVA_TIME_FORMAT = "javaTimeFormat";
031    String JAVA_TIME_FORMAT_SECONDS = "javaTimeFormatSeconds";
032    String JAVA_TIME_ZONE_NAME = "javaTimeZoneName";
033    String LANGUAGE_ISO_NAME = "languageIsoName";
034    String SHORT_DATE_SEPARATOR = "shortDateSeparator";
035    String SORT_ORDER = "sortOrder";
036    String TIME_SEPARATOR = "timeSeparator";
037    String UNIX_ABBREV_DATE_FORMAT = "unixAbbrevDateFormat";
038    String UNIX_ABBREV_DATE_FORMAT_WEEKDAY = "unixAbbrevDateFormatWeekday";
039    String UNIX_LONG_DATE_FORMAT = "unixLongDateFormat";
040    String UNIX_LONG_DATE_FORMAT_WEEKDAY = "unixLongDateFormatWeekday";
041    String UNIX_SHORT_DATE_FORMAT = "unixShortDateFormat";
042    String UNIX_TIME_FORMAT = "unixTimeFormat";
043    String UNIX_TIME_FORMAT_SECONDS = "unixTimeFormatSeconds";
044    String UNIX_TIME_ZONE_NAME = "unixTimeZoneName";
045    
046}