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.model.control.sequence.common.transfer.SequenceTransfer; 020import com.echothree.model.control.uom.common.transfer.UnitOfMeasureTypeTransfer; 021import com.echothree.util.common.transfer.BaseTransfer; 022import com.echothree.util.common.transfer.ListWrapper; 023 024public class EntityAttributeTransfer 025 extends BaseTransfer { 026 027 private EntityTypeTransfer entityType; 028 private String entityAttributeName; 029 private EntityAttributeTypeTransfer entityAttributeType; 030 private Boolean trackRevisions; 031 private Integer sortOrder; 032 private String description; 033 034 private Boolean checkContentWebAddress; 035 private String validationPattern; 036 private Integer upperRangeIntegerValue; 037 private Integer upperLimitIntegerValue; 038 private Integer lowerLimitIntegerValue; 039 private Integer lowerRangeIntegerValue; 040 private Long upperRangeLongValue; 041 private Long upperLimitLongValue; 042 private Long lowerLimitLongValue; 043 private Long lowerRangeLongValue; 044 private UnitOfMeasureTypeTransfer unitOfMeasureType; 045 private SequenceTransfer entityListItemSequence; 046 047 private EntityBooleanDefaultTransfer entityBooleanDefault; 048 private EntityBooleanAttributeTransfer entityBooleanAttribute; 049 private EntityNameAttributeTransfer entityNameAttribute; 050 private EntityIntegerDefaultTransfer entityIntegerDefault; 051 private EntityIntegerAttributeTransfer entityIntegerAttribute; 052 private EntityLongDefaultTransfer entityLongDefault; 053 private EntityLongAttributeTransfer entityLongAttribute; 054 private EntityStringDefaultTransfer entityStringDefault; 055 private EntityStringAttributeTransfer entityStringAttribute; 056 private EntityGeoPointAttributeTransfer entityGeoPointAttribute; 057 private EntityBlobAttributeTransfer entityBlobAttribute; 058 private EntityClobAttributeTransfer entityClobAttribute; 059 private EntityEntityAttributeTransfer entityEntityAttribute; 060 private ListWrapper<EntityCollectionAttributeTransfer> entityCollectionAttributes; 061 private EntityDateDefaultTransfer entityDateDefault; 062 private EntityDateAttributeTransfer entityDateAttribute; 063 private EntityTimeAttributeTransfer entityTimeAttribute; 064 private EntityListItemDefaultTransfer entityListItemDefault; 065 private EntityListItemAttributeTransfer entityListItemAttribute; 066 private ListWrapper<EntityMultipleListItemDefaultTransfer> entityMultipleListItemDefaults; 067 private ListWrapper<EntityMultipleListItemAttributeTransfer> entityMultipleListItemAttributes; 068 069 private Long entityListItemsCount; 070 private ListWrapper<EntityListItemTransfer> entityListItems; 071 private Long entityAttributeEntityTypesCount; 072 private ListWrapper<EntityAttributeEntityTypeTransfer> entityAttributeEntityTypes; 073 074 /** Creates a new instance of EntityAttributeTransfer */ 075 public EntityAttributeTransfer(EntityTypeTransfer entityType, EntityAttributeTypeTransfer entityAttributeType, 076 String entityAttributeName, Boolean trackRevisions, Integer sortOrder, String description) { 077 this.entityType = entityType; 078 this.entityAttributeName = entityAttributeName; 079 this.entityAttributeType = entityAttributeType; 080 this.trackRevisions = trackRevisions; 081 this.sortOrder = sortOrder; 082 this.description = description; 083 } 084 085 /** 086 * Returns the entityType. 087 * @return the entityType 088 */ 089 public EntityTypeTransfer getEntityType() { 090 return entityType; 091 } 092 093 /** 094 * Sets the entityType. 095 * @param entityType the entityType to set 096 */ 097 public void setEntityType(EntityTypeTransfer entityType) { 098 this.entityType = entityType; 099 } 100 101 /** 102 * Returns the entityAttributeName. 103 * @return the entityAttributeName 104 */ 105 public String getEntityAttributeName() { 106 return entityAttributeName; 107 } 108 109 /** 110 * Sets the entityAttributeName. 111 * @param entityAttributeName the entityAttributeName to set 112 */ 113 public void setEntityAttributeName(String entityAttributeName) { 114 this.entityAttributeName = entityAttributeName; 115 } 116 117 /** 118 * Returns the entityAttributeType. 119 * @return the entityAttributeType 120 */ 121 public EntityAttributeTypeTransfer getEntityAttributeType() { 122 return entityAttributeType; 123 } 124 125 /** 126 * Sets the entityAttributeType. 127 * @param entityAttributeType the entityAttributeType to set 128 */ 129 public void setEntityAttributeType(EntityAttributeTypeTransfer entityAttributeType) { 130 this.entityAttributeType = entityAttributeType; 131 } 132 133 /** 134 * Returns the trackRevisions. 135 * @return the trackRevisions 136 */ 137 public boolean getTrackRevisions() { 138 return trackRevisions; 139 } 140 141 /** 142 * Sets the trackRevisions. 143 * @param trackRevisions the trackRevisions to set 144 */ 145 public void setTrackRevisions(boolean trackRevisions) { 146 this.trackRevisions = trackRevisions; 147 } 148 149 /** 150 * Returns the sortOrder. 151 * @return the sortOrder 152 */ 153 public Integer getSortOrder() { 154 return sortOrder; 155 } 156 157 /** 158 * Sets the sortOrder. 159 * @param sortOrder the sortOrder to set 160 */ 161 public void setSortOrder(Integer sortOrder) { 162 this.sortOrder = sortOrder; 163 } 164 165 /** 166 * Returns the description. 167 * @return the description 168 */ 169 public String getDescription() { 170 return description; 171 } 172 173 /** 174 * Sets the description. 175 * @param description the description to set 176 */ 177 public void setDescription(String description) { 178 this.description = description; 179 } 180 181 /** 182 * Returns the checkContentWebAddress. 183 * @return the checkContentWebAddress 184 */ 185 public Boolean getCheckContentWebAddress() { 186 return checkContentWebAddress; 187 } 188 189 /** 190 * Sets the checkContentWebAddress. 191 * @param checkContentWebAddress the checkContentWebAddress to set 192 */ 193 public void setCheckContentWebAddress(Boolean checkContentWebAddress) { 194 this.checkContentWebAddress = checkContentWebAddress; 195 } 196 197 /** 198 * Returns the validationPattern. 199 * @return the validationPattern 200 */ 201 public String getValidationPattern() { 202 return validationPattern; 203 } 204 205 /** 206 * Sets the validationPattern. 207 * @param validationPattern the validationPattern to set 208 */ 209 public void setValidationPattern(String validationPattern) { 210 this.validationPattern = validationPattern; 211 } 212 213 /** 214 * Returns the upperRangeIntegerValue. 215 * @return the upperRangeIntegerValue 216 */ 217 public Integer getUpperRangeIntegerValue() { 218 return upperRangeIntegerValue; 219 } 220 221 /** 222 * Sets the upperRangeIntegerValue. 223 * @param upperRangeIntegerValue the upperRangeIntegerValue to set 224 */ 225 public void setUpperRangeIntegerValue(Integer upperRangeIntegerValue) { 226 this.upperRangeIntegerValue = upperRangeIntegerValue; 227 } 228 229 /** 230 * Returns the upperLimitIntegerValue. 231 * @return the upperLimitIntegerValue 232 */ 233 public Integer getUpperLimitIntegerValue() { 234 return upperLimitIntegerValue; 235 } 236 237 /** 238 * Sets the upperLimitIntegerValue. 239 * @param upperLimitIntegerValue the upperLimitIntegerValue to set 240 */ 241 public void setUpperLimitIntegerValue(Integer upperLimitIntegerValue) { 242 this.upperLimitIntegerValue = upperLimitIntegerValue; 243 } 244 245 /** 246 * Returns the lowerLimitIntegerValue. 247 * @return the lowerLimitIntegerValue 248 */ 249 public Integer getLowerLimitIntegerValue() { 250 return lowerLimitIntegerValue; 251 } 252 253 /** 254 * Sets the lowerLimitIntegerValue. 255 * @param lowerLimitIntegerValue the lowerLimitIntegerValue to set 256 */ 257 public void setLowerLimitIntegerValue(Integer lowerLimitIntegerValue) { 258 this.lowerLimitIntegerValue = lowerLimitIntegerValue; 259 } 260 261 /** 262 * Returns the lowerRangeIntegerValue. 263 * @return the lowerRangeIntegerValue 264 */ 265 public Integer getLowerRangeIntegerValue() { 266 return lowerRangeIntegerValue; 267 } 268 269 /** 270 * Sets the lowerRangeIntegerValue. 271 * @param lowerRangeIntegerValue the lowerRangeIntegerValue to set 272 */ 273 public void setLowerRangeIntegerValue(Integer lowerRangeIntegerValue) { 274 this.lowerRangeIntegerValue = lowerRangeIntegerValue; 275 } 276 277 /** 278 * Returns the upperRangeLongValue. 279 * @return the upperRangeLongValue 280 */ 281 public Long getUpperRangeLongValue() { 282 return upperRangeLongValue; 283 } 284 285 /** 286 * Sets the upperRangeLongValue. 287 * @param upperRangeLongValue the upperRangeLongValue to set 288 */ 289 public void setUpperRangeLongValue(Long upperRangeLongValue) { 290 this.upperRangeLongValue = upperRangeLongValue; 291 } 292 293 /** 294 * Returns the upperLimitLongValue. 295 * @return the upperLimitLongValue 296 */ 297 public Long getUpperLimitLongValue() { 298 return upperLimitLongValue; 299 } 300 301 /** 302 * Sets the upperLimitLongValue. 303 * @param upperLimitLongValue the upperLimitLongValue to set 304 */ 305 public void setUpperLimitLongValue(Long upperLimitLongValue) { 306 this.upperLimitLongValue = upperLimitLongValue; 307 } 308 309 /** 310 * Returns the lowerLimitLongValue. 311 * @return the lowerLimitLongValue 312 */ 313 public Long getLowerLimitLongValue() { 314 return lowerLimitLongValue; 315 } 316 317 /** 318 * Sets the lowerLimitLongValue. 319 * @param lowerLimitLongValue the lowerLimitLongValue to set 320 */ 321 public void setLowerLimitLongValue(Long lowerLimitLongValue) { 322 this.lowerLimitLongValue = lowerLimitLongValue; 323 } 324 325 /** 326 * Returns the lowerRangeLongValue. 327 * @return the lowerRangeLongValue 328 */ 329 public Long getLowerRangeLongValue() { 330 return lowerRangeLongValue; 331 } 332 333 /** 334 * Sets the lowerRangeLongValue. 335 * @param lowerRangeLongValue the lowerRangeLongValue to set 336 */ 337 public void setLowerRangeLongValue(Long lowerRangeLongValue) { 338 this.lowerRangeLongValue = lowerRangeLongValue; 339 } 340 341 /** 342 * Returns the unitOfMeasureType. 343 * @return the unitOfMeasureType 344 */ 345 public UnitOfMeasureTypeTransfer getUnitOfMeasureType() { 346 return unitOfMeasureType; 347 } 348 349 /** 350 * Sets the unitOfMeasureType. 351 * @param unitOfMeasureType the unitOfMeasureType to set 352 */ 353 public void setUnitOfMeasureType(UnitOfMeasureTypeTransfer unitOfMeasureType) { 354 this.unitOfMeasureType = unitOfMeasureType; 355 } 356 357 /** 358 * Returns the entityListItemSequence. 359 * @return the entityListItemSequence 360 */ 361 public SequenceTransfer getEntityListItemSequence() { 362 return entityListItemSequence; 363 } 364 365 /** 366 * Sets the entityListItemSequence. 367 * @param entityListItemSequence the entityListItemSequence to set 368 */ 369 public void setEntityListItemSequence(SequenceTransfer entityListItemSequence) { 370 this.entityListItemSequence = entityListItemSequence; 371 } 372 373 /** 374 * Returns the entityBooleanDefault. 375 * @return the entityBooleanDefault 376 */ 377 public EntityBooleanDefaultTransfer getEntityBooleanDefault() { 378 return entityBooleanDefault; 379 } 380 381 /** 382 * Sets the entityBooleanDefault. 383 * @param entityBooleanDefault the entityBooleanDefault to set 384 */ 385 public void setEntityBooleanDefault(EntityBooleanDefaultTransfer entityBooleanDefault) { 386 this.entityBooleanDefault = entityBooleanDefault; 387 } 388 389 /** 390 * Returns the entityBooleanAttribute. 391 * @return the entityBooleanAttribute 392 */ 393 public EntityBooleanAttributeTransfer getEntityBooleanAttribute() { 394 return entityBooleanAttribute; 395 } 396 397 /** 398 * Sets the entityBooleanAttribute. 399 * @param entityBooleanAttribute the entityBooleanAttribute to set 400 */ 401 public void setEntityBooleanAttribute(EntityBooleanAttributeTransfer entityBooleanAttribute) { 402 this.entityBooleanAttribute = entityBooleanAttribute; 403 } 404 405 /** 406 * Returns the entityNameAttribute. 407 * @return the entityNameAttribute 408 */ 409 public EntityNameAttributeTransfer getEntityNameAttribute() { 410 return entityNameAttribute; 411 } 412 413 /** 414 * Sets the entityNameAttribute. 415 * @param entityNameAttribute the entityNameAttribute to set 416 */ 417 public void setEntityNameAttribute(EntityNameAttributeTransfer entityNameAttribute) { 418 this.entityNameAttribute = entityNameAttribute; 419 } 420 421 /** 422 * Returns the entityIntegerDefault. 423 * @return the entityIntegerDefault 424 */ 425 public EntityIntegerDefaultTransfer getEntityIntegerDefault() { 426 return entityIntegerDefault; 427 } 428 429 /** 430 * Sets the entityIntegerDefault. 431 * @param entityIntegerDefault the entityIntegerDefault to set 432 */ 433 public void setEntityIntegerDefault(EntityIntegerDefaultTransfer entityIntegerDefault) { 434 this.entityIntegerDefault = entityIntegerDefault; 435 } 436 437 /** 438 * Returns the entityIntegerAttribute. 439 * @return the entityIntegerAttribute 440 */ 441 public EntityIntegerAttributeTransfer getEntityIntegerAttribute() { 442 return entityIntegerAttribute; 443 } 444 445 /** 446 * Sets the entityIntegerAttribute. 447 * @param entityIntegerAttribute the entityIntegerAttribute to set 448 */ 449 public void setEntityIntegerAttribute(EntityIntegerAttributeTransfer entityIntegerAttribute) { 450 this.entityIntegerAttribute = entityIntegerAttribute; 451 } 452 453 /** 454 * Returns the entityLongDefault. 455 * @return the entityLongDefault 456 */ 457 public EntityLongDefaultTransfer getEntityLongDefault() { 458 return entityLongDefault; 459 } 460 461 /** 462 * Sets the entityLongDefault. 463 * @param entityLongDefault the entityLongDefault to set 464 */ 465 public void setEntityLongDefault(EntityLongDefaultTransfer entityLongDefault) { 466 this.entityLongDefault = entityLongDefault; 467 } 468 469 /** 470 * Returns the entityLongAttribute. 471 * @return the entityLongAttribute 472 */ 473 public EntityLongAttributeTransfer getEntityLongAttribute() { 474 return entityLongAttribute; 475 } 476 477 /** 478 * Sets the entityLongAttribute. 479 * @param entityLongAttribute the entityLongAttribute to set 480 */ 481 public void setEntityLongAttribute(EntityLongAttributeTransfer entityLongAttribute) { 482 this.entityLongAttribute = entityLongAttribute; 483 } 484 485 /** 486 * Returns the entityStringDefault. 487 * @return the entityStringDefault 488 */ 489 public EntityStringDefaultTransfer getEntityStringDefault() { 490 return entityStringDefault; 491 } 492 493 /** 494 * Sets the entityStringDefault. 495 * @param entityStringDefault the entityStringDefault to set 496 */ 497 public void setEntityStringDefault(EntityStringDefaultTransfer entityStringDefault) { 498 this.entityStringDefault = entityStringDefault; 499 } 500 501 /** 502 * Returns the entityStringAttribute. 503 * @return the entityStringAttribute 504 */ 505 public EntityStringAttributeTransfer getEntityStringAttribute() { 506 return entityStringAttribute; 507 } 508 509 /** 510 * Sets the entityStringAttribute. 511 * @param entityStringAttribute the entityStringAttribute to set 512 */ 513 public void setEntityStringAttribute(EntityStringAttributeTransfer entityStringAttribute) { 514 this.entityStringAttribute = entityStringAttribute; 515 } 516 517 /** 518 * Returns the entityGeoPointAttribute. 519 * @return the entityGeoPointAttribute 520 */ 521 public EntityGeoPointAttributeTransfer getEntityGeoPointAttribute() { 522 return entityGeoPointAttribute; 523 } 524 525 /** 526 * Sets the entityGeoPointAttribute. 527 * @param entityGeoPointAttribute the entityGeoPointAttribute to set 528 */ 529 public void setEntityGeoPointAttribute(EntityGeoPointAttributeTransfer entityGeoPointAttribute) { 530 this.entityGeoPointAttribute = entityGeoPointAttribute; 531 } 532 533 /** 534 * Returns the entityBlobAttribute. 535 * @return the entityBlobAttribute 536 */ 537 public EntityBlobAttributeTransfer getEntityBlobAttribute() { 538 return entityBlobAttribute; 539 } 540 541 /** 542 * Sets the entityBlobAttribute. 543 * @param entityBlobAttribute the entityBlobAttribute to set 544 */ 545 public void setEntityBlobAttribute(EntityBlobAttributeTransfer entityBlobAttribute) { 546 this.entityBlobAttribute = entityBlobAttribute; 547 } 548 549 /** 550 * Returns the entityClobAttribute. 551 * @return the entityClobAttribute 552 */ 553 public EntityClobAttributeTransfer getEntityClobAttribute() { 554 return entityClobAttribute; 555 } 556 557 /** 558 * Sets the entityClobAttribute. 559 * @param entityClobAttribute the entityClobAttribute to set 560 */ 561 public void setEntityClobAttribute(EntityClobAttributeTransfer entityClobAttribute) { 562 this.entityClobAttribute = entityClobAttribute; 563 } 564 565 /** 566 * Returns the entityEntityAttribute. 567 * @return the entityEntityAttribute 568 */ 569 public EntityEntityAttributeTransfer getEntityEntityAttribute() { 570 return entityEntityAttribute; 571 } 572 573 /** 574 * Sets the entityEntityAttribute. 575 * @param entityEntityAttribute the entityEntityAttribute to set 576 */ 577 public void setEntityEntityAttribute(EntityEntityAttributeTransfer entityEntityAttribute) { 578 this.entityEntityAttribute = entityEntityAttribute; 579 } 580 581 /** 582 * Returns the entityCollectionAttributes. 583 * @return the entityCollectionAttributes 584 */ 585 public ListWrapper<EntityCollectionAttributeTransfer> getEntityCollectionAttributes() { 586 return entityCollectionAttributes; 587 } 588 589 /** 590 * Sets the entityCollectionAttributes. 591 * @param entityCollectionAttributes the entityCollectionAttributes to set 592 */ 593 public void setEntityCollectionAttributes(ListWrapper<EntityCollectionAttributeTransfer> entityCollectionAttributes) { 594 this.entityCollectionAttributes = entityCollectionAttributes; 595 } 596 597 /** 598 * Returns the entityDateDefault. 599 * @return the entityDateDefault 600 */ 601 public EntityDateDefaultTransfer getEntityDateDefault() { 602 return entityDateDefault; 603 } 604 605 /** 606 * Sets the entityDateDefault. 607 * @param entityDateDefault the entityDateDefault to set 608 */ 609 public void setEntityDateDefault(EntityDateDefaultTransfer entityDateDefault) { 610 this.entityDateDefault = entityDateDefault; 611 } 612 613 /** 614 * Returns the entityDateAttribute. 615 * @return the entityDateAttribute 616 */ 617 public EntityDateAttributeTransfer getEntityDateAttribute() { 618 return entityDateAttribute; 619 } 620 621 /** 622 * Sets the entityDateAttribute. 623 * @param entityDateAttribute the entityDateAttribute to set 624 */ 625 public void setEntityDateAttribute(EntityDateAttributeTransfer entityDateAttribute) { 626 this.entityDateAttribute = entityDateAttribute; 627 } 628 629 /** 630 * Returns the entityTimeAttribute. 631 * @return the entityTimeAttribute 632 */ 633 public EntityTimeAttributeTransfer getEntityTimeAttribute() { 634 return entityTimeAttribute; 635 } 636 637 /** 638 * Sets the entityTimeAttribute. 639 * @param entityTimeAttribute the entityTimeAttribute to set 640 */ 641 public void setEntityTimeAttribute(EntityTimeAttributeTransfer entityTimeAttribute) { 642 this.entityTimeAttribute = entityTimeAttribute; 643 } 644 645 /** 646 * Returns the entityListItemDefault. 647 * @return the entityListItemDefault 648 */ 649 public EntityListItemDefaultTransfer getEntityListItemDefault() { 650 return entityListItemDefault; 651 } 652 653 /** 654 * Sets the entityListItemDefault. 655 * @param entityListItemDefault the entityListItemDefault to set 656 */ 657 public void setEntityListItemDefault(EntityListItemDefaultTransfer entityListItemDefault) { 658 this.entityListItemDefault = entityListItemDefault; 659 } 660 661 /** 662 * Returns the entityListItemAttribute. 663 * @return the entityListItemAttribute 664 */ 665 public EntityListItemAttributeTransfer getEntityListItemAttribute() { 666 return entityListItemAttribute; 667 } 668 669 /** 670 * Sets the entityListItemAttribute. 671 * @param entityListItemAttribute the entityListItemAttribute to set 672 */ 673 public void setEntityListItemAttribute(EntityListItemAttributeTransfer entityListItemAttribute) { 674 this.entityListItemAttribute = entityListItemAttribute; 675 } 676 677 /** 678 * Returns the entityMultipleListItemDefaults. 679 * @return the entityMultipleListItemDefaults 680 */ 681 public ListWrapper<EntityMultipleListItemDefaultTransfer> getEntityMultipleListItemDefaults() { 682 return entityMultipleListItemDefaults; 683 } 684 685 /** 686 * Sets the entityMultipleListItemDefaults. 687 * @param entityMultipleListItemDefaults the entityMultipleListItemDefaults to set 688 */ 689 public void setEntityMultipleListItemDefaults(ListWrapper<EntityMultipleListItemDefaultTransfer> entityMultipleListItemDefaults) { 690 this.entityMultipleListItemDefaults = entityMultipleListItemDefaults; 691 } 692 693 /** 694 * Returns the entityMultipleListItemAttributes. 695 * @return the entityMultipleListItemAttributes 696 */ 697 public ListWrapper<EntityMultipleListItemAttributeTransfer> getEntityMultipleListItemAttributes() { 698 return entityMultipleListItemAttributes; 699 } 700 701 /** 702 * Sets the entityMultipleListItemAttributes. 703 * @param entityMultipleListItemAttributes the entityMultipleListItemAttributes to set 704 */ 705 public void setEntityMultipleListItemAttributes(ListWrapper<EntityMultipleListItemAttributeTransfer> entityMultipleListItemAttributes) { 706 this.entityMultipleListItemAttributes = entityMultipleListItemAttributes; 707 } 708 709 public Long getEntityListItemsCount() { 710 return entityListItemsCount; 711 } 712 713 public void setEntityListItemsCount(final Long entityListItemsCount) { 714 this.entityListItemsCount = entityListItemsCount; 715 } 716 717 /** 718 * Returns the entityListItems. 719 * @return the entityListItems 720 */ 721 public ListWrapper<EntityListItemTransfer> getEntityListItems() { 722 return entityListItems; 723 } 724 725 /** 726 * Sets the entityListItems. 727 * @param entityListItems the entityListItems to set 728 */ 729 public void setEntityListItems(ListWrapper<EntityListItemTransfer> entityListItems) { 730 this.entityListItems = entityListItems; 731 } 732 733 public Long getEntityAttributeEntityTypesCount() { 734 return entityAttributeEntityTypesCount; 735 } 736 737 public void setEntityAttributeEntityTypesCount(final Long entityAttributeEntityTypesCount) { 738 this.entityAttributeEntityTypesCount = entityAttributeEntityTypesCount; 739 } 740 741 /** 742 * Returns the entityAttributeEntityTypes. 743 * @return the entityAttributeEntityTypes 744 */ 745 public ListWrapper<EntityAttributeEntityTypeTransfer> getEntityAttributeEntityTypes() { 746 return entityAttributeEntityTypes; 747 } 748 749 /** 750 * Sets the entityAttributeEntityTypes. 751 * @param entityAttributeEntityTypes the entityAttributeEntityTypes to set 752 */ 753 public void setEntityAttributeEntityTypes(ListWrapper<EntityAttributeEntityTypeTransfer> entityAttributeEntityTypes) { 754 this.entityAttributeEntityTypes = entityAttributeEntityTypes; 755 } 756 757}