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.core.common.transfer; 018 019import com.echothree.util.common.transfer.BaseTransfer; 020 021public class EntityAttributeResultTransfer 022 extends BaseTransfer { 023 024 private String componentVendorName; 025 private String entityTypeName; 026 private String entityAttributeName; 027 private EntityAttributeTransfer entityAttribute; 028 029 /** Creates a new instance of EntityAttributeResultTransfer */ 030 public EntityAttributeResultTransfer(String componentVendorName, String entityTypeName, String entityAttributeName, 031 EntityAttributeTransfer entityAttribute) { 032 this.componentVendorName = componentVendorName; 033 this.entityTypeName = entityTypeName; 034 this.entityAttributeName = entityAttributeName; 035 this.entityAttribute = entityAttribute; 036 } 037 038 /** 039 * Returns the componentVendorName. 040 * @return the componentVendorName 041 */ 042 public String getComponentVendorName() { 043 return componentVendorName; 044 } 045 046 /** 047 * Sets the componentVendorName. 048 * @param componentVendorName the componentVendorName to set 049 */ 050 public void setComponentVendorName(String componentVendorName) { 051 this.componentVendorName = componentVendorName; 052 } 053 054 /** 055 * Returns the entityTypeName. 056 * @return the entityTypeName 057 */ 058 public String getEntityTypeName() { 059 return entityTypeName; 060 } 061 062 /** 063 * Sets the entityTypeName. 064 * @param entityTypeName the entityTypeName to set 065 */ 066 public void setEntityTypeName(String entityTypeName) { 067 this.entityTypeName = entityTypeName; 068 } 069 070 /** 071 * Returns the entityAttributeName. 072 * @return the entityAttributeName 073 */ 074 public String getEntityAttributeName() { 075 return entityAttributeName; 076 } 077 078 /** 079 * Sets the entityAttributeName. 080 * @param entityAttributeName the entityAttributeName to set 081 */ 082 public void setEntityAttributeName(String entityAttributeName) { 083 this.entityAttributeName = entityAttributeName; 084 } 085 086 /** 087 * Returns the entityAttribute. 088 * @return the entityAttribute 089 */ 090 public EntityAttributeTransfer getEntityAttribute() { 091 return entityAttribute; 092 } 093 094 /** 095 * Sets the entityAttribute. 096 * @param entityAttribute the entityAttribute to set 097 */ 098 public void setEntityAttribute(EntityAttributeTransfer entityAttribute) { 099 this.entityAttribute = entityAttribute; 100 } 101 102 }