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.content.common; 018 019public interface ContentProperties { 020 021 String CONTENT_CATALOG = "contentCatalog"; 022 String CONTENT_CATALOG_ITEM = "contentCatalogItem"; 023 String CONTENT_CATALOG_NAME = "contentCatalogName"; 024 String CONTENT_CATEGORY = "contentCategory"; 025 String CONTENT_CATEGORY_ITEM_SELECTOR = "contentCategoryItemSelector"; 026 String CONTENT_CATEGORY_NAME = "contentCategoryName"; 027 String CONTENT_COLLECTION = "contentCollection"; 028 String CONTENT_PAGE = "contentPage"; 029 String CONTENT_PAGE_LAYOUT = "contentPageLayout"; 030 String CONTENT_PAGE_LAYOUT_AREA = "contentPageLayoutArea"; 031 String CONTENT_PAGE_NAME = "contentPageName"; 032 String CONTENT_SECTION = "contentSection"; 033 String CONTENT_SECTION_NAME = "contentSectionName"; 034 String CURRENCY = "currency"; 035 String DEFAULT_OFFER_USE = "defaultOfferUse"; 036 String DESCRIPTION = "description"; 037 String ENTITY_INSTANCE = "entityInstance"; 038 String INVENTORY_CONDITION = "inventoryCondition"; 039 String IS_DEFAULT = "isDefault"; 040 String ITEM = "item"; 041 String LANGUAGE = "language"; 042 String MAXIMUM_UNIT_PRICE = "maximumUnitPrice"; 043 String MIME_TYPE = "mimeType"; 044 String MINIMUM_UNIT_PRICE = "minimumUnitPrice"; 045 String PARENT_CONTENT_CATEGORY = "parentContentCategory"; 046 String PARENT_CONTENT_SECTION = "parentContentSection"; 047 String SORT_ORDER = "sortOrder"; 048 String UNFORMATTED_MAXIMUM_UNIT_PRICE = "unformattedMaximumUnitPrice"; 049 String UNFORMATTED_MINIMUM_UNIT_PRICE = "unformattedMinimumUnitPrice"; 050 String UNFORMATTED_UNIT_PRICE = "unformattedUnitPrice"; 051 String UNFORMATTED_UNIT_PRICE_INCREMENT = "unformattedUnitPriceIncrement"; 052 String UNIT_OF_MEASURE_TYPE = "unitOfMeasureType"; 053 String UNIT_PRICE = "unitPrice"; 054 String UNIT_PRICE_INCREMENT = "unitPriceIncrement"; 055 056}