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.forum.common; 018 019public interface ForumOptions { 020 021 String ForumGroupIncludeForums = "ForumGroupIncludeForums"; 022 String ForumGroupIncludeEntityAttributeGroups = "ForumGroupIncludeEntityAttributeGroups"; 023 String ForumGroupIncludeTagScopes = "ForumGroupIncludeTagScopes"; 024 025 String ForumIncludeGuid = "ForumIncludeGuid"; 026 String ForumIncludeForumGroups = "ForumIncludeForumGroups"; 027 String ForumIncludeForumThreads = "ForumIncludeForumThreads"; 028 String ForumIncludeFutureForumThreads = "ForumIncludeFutureForumThreads"; 029 String ForumIncludeEntityAttributeGroups = "ForumIncludeEntityAttributeGroups"; 030 String ForumIncludeTagScopes = "ForumIncludeTagScopes"; 031 032 String ForumThreadIncludeGuid = "ForumThreadIncludeGuid"; 033 String ForumThreadIncludeForumMessages = "ForumThreadIncludeForumMessages"; 034 String ForumThreadIncludeForumForumThreads = "ForumThreadIncludeForumForumThreads"; 035 String ForumThreadIncludeEntityAttributeGroups = "ForumThreadIncludeEntityAttributeGroups"; 036 String ForumThreadIncludeTagScopes = "ForumThreadIncludeTagScopes"; 037 038 String ForumMessageIncludeGuid = "ForumMessageIncludeGuid"; 039 String ForumMessageIncludeForumMessageRoles = "ForumMessageIncludeForumMessageRoles"; 040 String ForumMessageIncludeForumMessageParts = "ForumMessageIncludeForumMessageParts"; 041 String ForumMessageIncludeForumMessageAttachments = "ForumMessageIncludeForumMessageAttachments"; 042 String ForumMessageIncludeEntityAttributeGroups = "ForumMessageIncludeEntityAttributeGroups"; 043 String ForumMessageIncludeTagScopes = "ForumMessageIncludeTagScopes"; 044 045 String ForumMessageAttachmentIncludeBlob = "ForumMessageAttachmentIncludeBlob"; 046 String ForumMessageAttachmentIncludeClob = "ForumMessageAttachmentIncludeClob"; 047 String ForumMessageAttachmentIncludeETag = "ForumMessageAttachmentIncludeETag"; 048 049 String ForumMessagePartIncludeBlob = "ForumMessagePartIncludeBlob"; 050 String ForumMessagePartIncludeClob = "ForumMessagePartIncludeClob"; 051 String ForumMessagePartIncludeString = "ForumMessagePartIncludeString"; 052 053}