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.customer.common; 018 019public interface CustomerProperties { 020 021 String ALLOCATION_PRIORITY = "allocationPriority"; 022 String CUSTOMER_SEQUENCE = "customerSequence"; 023 String CUSTOMER_TYPE_NAME = "customerTypeName"; 024 String DEFAULT_ALLOW_BACKORDERS = "defaultAllowBackorders"; 025 String DEFAULT_ALLOW_COMBINING_SHIPMENTS = "defaultAllowCombiningShipments"; 026 String DEFAULT_ALLOW_REFERENCE_DUPLICATES = "defaultAllowReferenceDuplicates"; 027 String DEFAULT_ALLOW_SUBSTITUTION = "defaultAllowSubstitutions"; 028 String DEFAULT_AR_GL_ACCOUNT = "defaultArGlAccount"; 029 String DEFAULT_CANCELLATION_POLICY = "defaultCancellationPolicy"; 030 String DEFAULT_HOLD_UNTIL_COMPLETE = "defaultHoldUntilComplete"; 031 String DEFAULT_OFFER_USE = "defaultOfferUse"; 032 String DEFAULT_REFERENCE_VALIDATION_PATTERN = "defaultReferenceValidationPattern"; 033 String DEFAULT_REQUIRE_REFERENCE = "defaultRequireReference"; 034 String DEFAULT_RETURN_POLICY = "defaultReturnPolicy"; 035 String DEFAULT_TAXABLE = "defaultTaxable"; 036 String DEFAULT_TERM = "defaultTerm"; 037 String DEFAULT_FREE_ON_BOARD = "defaultFreeOnBoard"; 038 String DESCRIPTION = "description"; 039 String ENTITY_INSTANCE = "entityInstance"; 040 String IS_DEFAULT = "isDefault"; 041 String SORT_ORDER = "sortOrder"; 042 043}