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 EntityAttributeGroupResultTransfer
022        extends BaseTransfer {
023    
024    private String entityAttributeGroupName;
025    private EntityAttributeGroupTransfer entityAttributeGroup;
026    
027    /** Creates a new instance of EntityAttributeGroupResultTransfer */
028    public EntityAttributeGroupResultTransfer(String entityAttributeGroupName,
029            EntityAttributeGroupTransfer entityAttributeGroup) {
030        this.entityAttributeGroupName = entityAttributeGroupName;
031        this.entityAttributeGroup = entityAttributeGroup;
032    }
033
034    /**
035     * Returns the entityAttributeGroupName.
036     * @return the entityAttributeGroupName
037     */
038    public String getEntityAttributeGroupName() {
039        return entityAttributeGroupName;
040    }
041
042    /**
043     * Sets the entityAttributeGroupName.
044     * @param entityAttributeGroupName the entityAttributeGroupName to set
045     */
046    public void setEntityAttributeGroupName(String entityAttributeGroupName) {
047        this.entityAttributeGroupName = entityAttributeGroupName;
048    }
049
050    /**
051     * Returns the entityAttributeGroup.
052     * @return the entityAttributeGroup
053     */
054    public EntityAttributeGroupTransfer getEntityAttributeGroup() {
055        return entityAttributeGroup;
056    }
057
058    /**
059     * Sets the entityAttributeGroup.
060     * @param entityAttributeGroup the entityAttributeGroup to set
061     */
062    public void setEntityAttributeGroup(EntityAttributeGroupTransfer entityAttributeGroup) {
063        this.entityAttributeGroup = entityAttributeGroup;
064    }
065
066 }