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.core.common; 018 019public interface CoreProperties { 020 021 String CACHE_ENTRY = "cacheEntry"; 022 String CACHE_ENTRY_KEY = "cacheEntryKey"; 023 String CHECK_CONTENT_WEB_ADDRESS = "checkContentWebAddress"; 024 String COMPONENT_VENDOR = "componentVendor"; 025 String COMPONENT_VENDOR_NAME = "componentVendorName"; 026 String CREATED_TIME = "createdTime"; 027 String DELETED_TIME = "deletedTime"; 028 String DESCRIPTION = "description"; 029 String ENTITY_ATTRIBUTE = "entityAttribute"; 030 String ENTITY_ATTRIBUTE_NAME = "entityAttributeName"; 031 String ENTITY_ATTRIBUTE_TYPE = "entityAttributeType"; 032 String ENTITY_ATTRIBUTE_TYPE_NAME = "entityAttributeTypeName"; 033 String ENTITY_INSTANCE = "entityInstance"; 034 String ENTITY_INTEGER_RANGE_NAME = "entityIntegerRangeName"; 035 String ENTITY_LIST_ITEM_NAME = "entityListItemName"; 036 String ENTITY_LIST_ITEM_SEQUENCE = "entityListItemSequence"; 037 String ENTITY_LONG_RANGE_NAME = "entityLongRangeName"; 038 String ENTITY_REF = "entityRef"; 039 String ENTITY_TIME = "entityTime"; 040 String ENTITY_TYPE = "entityType"; 041 String ENTITY_TYPE_NAME = "entityTypeName"; 042 String ENTITY_UNIQUE_ID = "entityUniqueId"; 043 String IS_DEFAULT = "isDefault"; 044 String IS_EXTENSIBLE = "isExtensible"; 045 String KEEP_ALL_HISTORY = "keepAllHistory"; 046 String LOCK_TIMEOUT = "lockTimeout"; 047 String MAXIMUM_INTEGER_VALUE = "maximumIntegerValue"; 048 String MAXIMUM_LONG_VALUE = "maximumLongValue"; 049 String MIME_TYPE = "mimeType"; 050 String MIME_TYPE_NAME = "mimeTypeName"; 051 String MIME_TYPE_USAGE_TYPE_NAME = "mimeTypeUsageTypename"; 052 String MINIMUM_INTEGER_VALUE = "minimumIntegerValue"; 053 String MINIMUM_LONG_VALUE = "minimumLongValue"; 054 String MODIFIED_TIME = "modifiedTime"; 055 String SORT_ORDER = "sortOrder"; 056 String TRACK_REVISIONS = "trackRevisions"; 057 String UNFORMATTED_CREATED_TIME = "unformattedCreatedTime"; 058 String UNFORMATTED_DELETED_TIME = "unformattedDeletedTime"; 059 String UNFORMATTED_LOCK_TIMEOUT = "unformattedLockTimeout"; 060 String UNFORMATTED_MODIFIED_TIME = "unformattedModifiedTime"; 061 String UNFORMATTED_VALID_UNTIL_TIME = "unformattedValidUntilTime"; 062 String UNIT_OF_MEASURE_TYPE = "unitOfMeasureType"; 063 String VALID_UNTIL_TIME = "validUntilTime"; 064 String VALIDATION_PATTERN = "validationPattern"; 065 066}