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.sequence.common.transfer; 018 019import com.echothree.util.common.transfer.BaseTransfer; 020 021public class SequenceTransfer 022 extends BaseTransfer { 023 024 private SequenceTypeTransfer sequenceType; 025 private String sequenceName; 026 private String mask; 027 private Integer chunkSize; 028 private Boolean isDefault; 029 private Integer sortOrder; 030 private String value; 031 private String description; 032 033 /** Creates a new instance of SequenceTransfer */ 034 public SequenceTransfer(SequenceTypeTransfer sequenceType, String sequenceName, String mask, Integer chunkSize, Boolean isDefault, Integer sortOrder, 035 String value, String description) { 036 this.sequenceType = sequenceType; 037 this.sequenceName = sequenceName; 038 this.mask = mask; 039 this.chunkSize = chunkSize; 040 this.isDefault = isDefault; 041 this.sortOrder = sortOrder; 042 this.value = value; 043 this.description = description; 044 } 045 046 public SequenceTypeTransfer getSequenceType() { 047 return sequenceType; 048 } 049 050 public void setSequenceType(SequenceTypeTransfer sequenceType) { 051 this.sequenceType = sequenceType; 052 } 053 054 public String getSequenceName() { 055 return sequenceName; 056 } 057 058 public void setSequenceName(String sequenceName) { 059 this.sequenceName = sequenceName; 060 } 061 062 public String getMask() { 063 return mask; 064 } 065 066 public void setMask(String mask) { 067 this.mask = mask; 068 } 069 070 public Integer getChunkSize() { 071 return chunkSize; 072 } 073 074 public void setChunkSize(Integer chunkSize) { 075 this.chunkSize = chunkSize; 076 } 077 078 public Boolean getIsDefault() { 079 return isDefault; 080 } 081 082 public void setIsDefault(Boolean isDefault) { 083 this.isDefault = isDefault; 084 } 085 086 public Integer getSortOrder() { 087 return sortOrder; 088 } 089 090 public void setSortOrder(Integer sortOrder) { 091 this.sortOrder = sortOrder; 092 } 093 094 public String getValue() { 095 return value; 096 } 097 098 public void setValue(String value) { 099 this.value = value; 100 } 101 102 public String getDescription() { 103 return description; 104 } 105 106 public void setDescription(String description) { 107 this.description = description; 108 } 109 110}