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.party.common; 018 019public interface PartyOptions { 020 021 String PartyTypeIncludeAuditPolicy = "PartyTypeIncludeAuditPolicy"; 022 String PartyTypeIncludeLockoutPolicy = "PartyTypeIncludeLockoutPolicy"; 023 String PartyTypeIncludePasswordStringPolicy = "PartyTypeIncludePasswordStringPolicy"; 024 String PartyTypeIncludePartyAliasTypes = "PartyTypeIncludePartyAliasTypes"; 025 026 String PartyIncludeKey = "PartyIncludeKey"; 027 String PartyIncludeGuid = "PartyIncludeGuid"; 028 String PartyIncludeDescription = "PartyIncludeDescription"; 029 String PartyIncludePartyCarriers = "PartyIncludePartyCarriers"; 030 String PartyIncludePartyCarrierAccounts = "PartyIncludePartyCarrierAccounts"; 031 String PartyIncludePartyContactLists = "PartyIncludeCPartyontactLists"; 032 String PartyIncludePartyAliases = "PartyIncludePartyAliases"; 033 String PartyIncludePartyContactMechanisms = "PartyIncludePartyContactMechanisms"; 034 String PartyIncludeRecoveryAnswer = "PartyIncludeRecoveryAnswer"; 035 String PartyIncludeUserLogin = "PartyIncludeUserLogin"; 036 String PartyIncludePartyDocuments = "PartyIncludePartyDocuments"; 037 String PartyIncludePartyPrinterGroupUses = "PartyIncludePartyPrinterGroupUses"; 038 String PartyIncludePartyScaleUses = "PartyIncludePartyScaleUses"; 039 String PartyIncludePartyEntityTypes = "PartyIncludePartyEntityTypes"; 040 String PartyIncludePartyApplicationEditorUses = "PartyIncludePartyApplicationEditorUses"; 041 String PartyIncludePartyRelationships = "PartyIncludePartyRelationships"; 042 String PartyIncludePartyRelationshipsByFromParty = "PartyIncludePartyRelationshipsByFromParty"; 043 String PartyIncludePartyRelationshipsByToParty = "PartyIncludePartyRelationshipsByToParty"; 044 String PartyIncludeEmployments = "PartyIncludeEmployments"; 045 String PartyIncludeLeaves = "PartyIncludeLeaves"; 046 String PartyIncludePartyResponsibilities = "PartyIncludePartyResponsibilities"; 047 String PartyIncludePartyTrainingClasses = "PartyIncludePartyTrainingClasses"; 048 String PartyIncludePartySkills = "PartyIncludePartySkills"; 049 050 String PartyAliasTypeIncludeEntityAttributeGroups = "PartyAliasTypeIncludeEntityAttributeGroups"; 051 String PartyAliasTypeIncludeTagScopes = "PartyAliasTypeIncludeTagScopes"; 052 String PartyAliasTypeIncludeKey = "PartyAliasTypeIncludeKey"; 053 String PartyAliasTypeIncludeGuid = "PartyAliasTypeIncludeGuid"; 054 055 String CompanyIncludeEntityAttributeGroups = "CompanyIncludeEntityAttributeGroups"; 056 String CompanyIncludeTagScopes = "CompanyIncludeTagScopes"; 057 String CompanyIncludeKey = "CompanyIncludeKey"; 058 String CompanyIncludeGuid = "CompanyIncludeGuid"; 059 String CompanyIncludeBillingAccounts = "CompanyIncludeBillingAccounts"; 060 String CompanyIncludeInvoicesFrom = "CompanyIncludeInvoicesFrom"; 061 String CompanyIncludeInvoicesTo = "CompanyIncludeInvoicesTo"; 062 063 String DivisionIncludeEntityAttributeGroups = "DivisionIncludeEntityAttributeGroups"; 064 String DivisionIncludeTagScopes = "DivisionIncludeTagScopes"; 065 String DivisionIncludeKey = "DivisionIncludeKey"; 066 String DivisionIncludeGuid = "DivisionIncludeGuid"; 067 068 String DepartmentIncludeEntityAttributeGroups = "DepartmentIncludeEntityAttributeGroups"; 069 String DepartmentIncludeTagScopes = "DepartmentIncludeTagScopes"; 070 String DepartmentIncludeKey = "DepartmentIncludeKey"; 071 String DepartmentIncludeGuid = "DepartmentIncludeGuid"; 072 073}