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 ContentOptions { 020 021 String ContentCollectionIncludeContentCatalogs = "ContentCollectionIncludeContentCatalogs"; 022 String ContentCollectionIncludeContentForums = "ContentCollectionIncludeContentForums"; 023 String ContentCollectionIncludeContentSections = "ContentCollectionIncludeContentSections"; 024 String ContentCollectionIncludeKey = "ContentCollectionIncludeKey"; 025 String ContentCollectionIncludeGuid = "ContentCollectionIncludeGuid"; 026 String ContentCollectionIncludeEntityAttributeGroups = "ContentCollectionIncludeEntityAttributeGroups"; 027 String ContentCollectionIncludeTagScopes = "ContentCollectionIncludeTagScopes"; 028 029 String ContentCatalogIncludeContentCatalogItems = "ContentCatalogIncludeContentCatalogItems"; 030 String ContentCatalogIncludeContentCatalogCategories = "ContentCatalogIncludeContentCatalogCategories"; 031 String ContentCatalogIncludeKey = "ContentCatalogIncludeKey"; 032 String ContentCatalogIncludeGuid = "ContentCatalogIncludeGuid"; 033 String ContentCatalogIncludeEntityAttributeGroups = "ContentCatalogIncludeEntityAttributeGroups"; 034 String ContentCatalogIncludeTagScopes = "ContentCatalogIncludeTagScopes"; 035 036 String ContentCatalogItemIncludeEntityAttributeGroups = "ContentCatalogItemIncludeEntityAttributeGroups"; 037 String ContentCatalogItemIncludeTagScopes = "ContentCatalogItemIncludeTagScopes"; 038 039 String ContentCategoryIncludeContentCategoryItems = "ContentCategoryIncludeContentCategoryItems"; 040 String ContentCategoryIncludeKey = "ContentCategoryIncludeKey"; 041 String ContentCategoryIncludeGuid = "ContentCategoryIncludeGuid"; 042 String ContentCategoryIncludeEntityAttributeGroups = "ContentCategoryIncludeEntityAttributeGroups"; 043 String ContentCategoryIncludeTagScopes = "ContentCategoryIncludeTagScopes"; 044 045 String ContentSectionIncludeContentPages = "ContentSectionIncludeContentPages"; 046 String ContentSectionIncludeKey = "ContentSectionIncludeKey"; 047 String ContentSectionIncludeGuid = "ContentSectionIncludeGuid"; 048 String ContentSectionIncludeEntityAttributeGroups = "ContentSectionIncludeEntityAttributeGroups"; 049 String ContentSectionIncludeTagScopes = "ContentSectionIncludeTagScopes"; 050 051 String ContentPageIncludeContentPageAreas = "ContentPageIncludeContentPageAreas"; 052 String ContentPageIncludeKey = "ContentPageIncludeKey"; 053 String ContentPageIncludeGuid = "ContentPageIncludeGuid"; 054 String ContentPageIncludeEntityAttributeGroups = "ContentPageIncludeEntityAttributeGroups"; 055 String ContentPageIncludeTagScopes = "ContentPageIncludeTagScopes"; 056 057 String ContentPageAreaIncludeBlob = "ContentPageAreaIncludeBlob"; 058 String ContentPageAreaIncludeClob = "ContentPageAreaIncludeClob"; 059 String ContentPageAreaIncludeString = "ContentPageAreaIncludeString"; 060 String ContentPageAreaIncludeUrl = "ContentPageAreaIncludeUrl"; 061 062 String ContentWebAddressIncludeKey = "ContentWebAddressIncludeKey"; 063 String ContentWebAddressIncludeGuid = "ContentWebAddressIncludeGuid"; 064 String ContentWebAddressIncludeEntityAttributeGroups = "ContentWebAddressIncludeEntityAttributeGroups"; 065 String ContentWebAddressIncludeTagScopes = "ContentWebAddressIncludeTagScopes"; 066 067}