001// --------------------------------------------------------------------------------
002// Copyright 2002-2025 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 ContentCollectionIncludeUuid = "ContentCollectionIncludeUuid";
025    String ContentCollectionIncludeEntityAttributeGroups = "ContentCollectionIncludeEntityAttributeGroups";
026    String ContentCollectionIncludeTagScopes = "ContentCollectionIncludeTagScopes";
027    
028    String ContentCatalogIncludeContentCatalogItems = "ContentCatalogIncludeContentCatalogItems";
029    String ContentCatalogIncludeContentCatalogCategories = "ContentCatalogIncludeContentCatalogCategories";
030    String ContentCatalogIncludeUuid = "ContentCatalogIncludeUuid";
031    String ContentCatalogIncludeEntityAttributeGroups = "ContentCatalogIncludeEntityAttributeGroups";
032    String ContentCatalogIncludeTagScopes = "ContentCatalogIncludeTagScopes";
033
034    String ContentCatalogItemIncludeEntityAttributeGroups = "ContentCatalogItemIncludeEntityAttributeGroups";
035    String ContentCatalogItemIncludeTagScopes = "ContentCatalogItemIncludeTagScopes";
036
037    String ContentCategoryIncludeContentCategoryItems = "ContentCategoryIncludeContentCategoryItems";
038    String ContentCategoryIncludeUuid = "ContentCategoryIncludeUuid";
039    String ContentCategoryIncludeEntityAttributeGroups = "ContentCategoryIncludeEntityAttributeGroups";
040    String ContentCategoryIncludeTagScopes = "ContentCategoryIncludeTagScopes";
041    
042    String ContentSectionIncludeContentPages = "ContentSectionIncludeContentPages";
043    String ContentSectionIncludeUuid = "ContentSectionIncludeUuid";
044    String ContentSectionIncludeEntityAttributeGroups = "ContentSectionIncludeEntityAttributeGroups";
045    String ContentSectionIncludeTagScopes = "ContentSectionIncludeTagScopes";
046    
047    String ContentPageIncludeContentPageAreas = "ContentPageIncludeContentPageAreas";
048    String ContentPageIncludeUuid = "ContentPageIncludeUuid";
049    String ContentPageIncludeEntityAttributeGroups = "ContentPageIncludeEntityAttributeGroups";
050    String ContentPageIncludeTagScopes = "ContentPageIncludeTagScopes";
051    
052    String ContentPageAreaIncludeBlob   = "ContentPageAreaIncludeBlob";
053    String ContentPageAreaIncludeClob   = "ContentPageAreaIncludeClob";
054    String ContentPageAreaIncludeString = "ContentPageAreaIncludeString";
055    String ContentPageAreaIncludeUrl    = "ContentPageAreaIncludeUrl";
056    
057    String ContentWebAddressIncludeUuid = "ContentWebAddressIncludeUuid";
058    String ContentWebAddressIncludeEntityAttributeGroups = "ContentWebAddressIncludeEntityAttributeGroups";
059    String ContentWebAddressIncludeTagScopes = "ContentWebAddressIncludeTagScopes";
060    
061}