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.comment.common;
018
019public interface CommentConstants {
020    
021    String CommentType_CONTACT_MECHANISM = "CONTACT_MECHANISM";
022    String CommentType_CUSTOMER_CUSTOMER_SERVICE = "CUSTOMER_CUSTOMER_SERVICE";
023    String CommentType_CUSTOMER_ORDER_ENTRY = "CUSTOMER_ORDER_ENTRY";
024    String CommentType_ITEM_CUSTOMER = "ITEM_CUSTOMER";
025    String CommentType_ITEM_CUSTOMER_SERVICE = "ITEM_CUSTOMER_SERVICE";
026    String CommentType_ITEM_PURCHASING = "ITEM_PURCHASING";
027    String CommentType_PARTY_CONTACT_LIST = "PARTY_CONTACT_LIST";
028    String CommentType_PARTY_PAYMENT_METHOD = "PARTY_PAYMENT_METHOD";
029    String CommentType_PAYMENT_METHOD = "PAYMENT_METHOD";
030    String CommentType_PAYMENT_PROCESSOR = "PAYMENT_PROCESSOR";
031    String CommentType_SHIPPING_METHOD = "SHIPPING_METHOD";
032    String CommentType_VENDOR_PURCHASING  = "VENDOR_PURCHASING";
033    String CommentType_VENDOR_ITEM_PURCHASING  = "VENDOR_ITEM_PURCHASING";
034    
035}