From 19da86006445d9db289f90b163003a5910fa4602 Mon Sep 17 00:00:00 2001 From: tpylak <tpylak> Date: Wed, 28 Jul 2010 08:21:32 +0000 Subject: [PATCH] hibernate getters/setters cannot be final SVN: 17251 --- .../generic/shared/dto/RelationshipTypePE.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/RelationshipTypePE.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/RelationshipTypePE.java index ff70d8f95f5..6010316f586 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/RelationshipTypePE.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/RelationshipTypePE.java @@ -117,12 +117,12 @@ public class RelationshipTypePE extends HibernateAbstractRegistrationHolder impl @NotNull(message = ValidationMessages.DESCRIPTION_NOT_NULL_MESSAGE) @Column(name = ColumnNames.DESCRIPTION_COLUMN) @Length(max = GenericConstants.DESCRIPTION_2000, message = ValidationMessages.DESCRIPTION_LENGTH_MESSAGE) - public final String getDescription() + public String getDescription() { return description; } - public final void setDescription(final String description) + public void setDescription(final String description) { this.description = description; } @@ -130,12 +130,12 @@ public class RelationshipTypePE extends HibernateAbstractRegistrationHolder impl @NotNull(message = ValidationMessages.LABEL_NOT_NULL_MESSAGE) @Column(name = ColumnNames.LABEL_COLUMN) @Length(max = GenericConstants.COLUMN_LABEL, message = ValidationMessages.LABEL_LENGTH_MESSAGE) - public final String getLabel() + public String getLabel() { return label; } - public final void setLabel(final String label) + public void setLabel(final String label) { this.label = label; } @@ -181,12 +181,12 @@ public class RelationshipTypePE extends HibernateAbstractRegistrationHolder impl @NotNull(message = ValidationMessages.LABEL_NOT_NULL_MESSAGE) @Column(name = ColumnNames.PARENT_LABEL_COLUMN) @Length(max = GenericConstants.COLUMN_LABEL, message = ValidationMessages.LABEL_LENGTH_MESSAGE) - public final String getParentLabel() + public String getParentLabel() { return parentLabel; } - public final void setParentLabel(final String parentLabel) + public void setParentLabel(final String parentLabel) { this.parentLabel = parentLabel; } @@ -194,12 +194,12 @@ public class RelationshipTypePE extends HibernateAbstractRegistrationHolder impl @NotNull(message = ValidationMessages.LABEL_NOT_NULL_MESSAGE) @Column(name = ColumnNames.CHILD_LABEL_COLUMN) @Length(max = GenericConstants.COLUMN_LABEL, message = ValidationMessages.LABEL_LENGTH_MESSAGE) - public final String getChildLabel() + public String getChildLabel() { return childLabel; } - public final void setChildLabel(final String childLabel) + public void setChildLabel(final String childLabel) { this.childLabel = childLabel; } -- GitLab