From e9de68a4c700d6785333e017f862e5abf23b93df Mon Sep 17 00:00:00 2001 From: pkupczyk <pkupczyk> Date: Mon, 8 Feb 2016 09:17:07 +0000 Subject: [PATCH] SSDM-3085 : V3 AS API - executeOperations executions table - remove final modifier from PE object getters/setter methods for the Hibernate proxy mechanism to work properly and not log any ERRORS (should fix intergation-tests) SVN: 35644 --- .../generic/shared/dto/OperationExecutionPE.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/OperationExecutionPE.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/OperationExecutionPE.java index 0036aaf7d3f..dd7bda9e878 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/OperationExecutionPE.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/shared/dto/OperationExecutionPE.java @@ -72,19 +72,19 @@ public class OperationExecutionPE implements IIdHolder, Serializable @SequenceGenerator(name = SequenceNames.OPERATION_EXECUTIONS_SEQUENCE, sequenceName = SequenceNames.OPERATION_EXECUTIONS_SEQUENCE, allocationSize = 1) @Id @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = SequenceNames.OPERATION_EXECUTIONS_SEQUENCE) - public final Long getId() + public Long getId() { return id; } - public final void setId(final Long id) + public void setId(Long id) { this.id = id; } @NotNull(message = ValidationMessages.CODE_NOT_NULL_MESSAGE) @Length(min = 1, max = Code.CODE_LENGTH_MAX, message = ValidationMessages.CODE_LENGTH_MESSAGE) - public final String getCode() + public String getCode() { return code; } @@ -113,7 +113,7 @@ public class OperationExecutionPE implements IIdHolder, Serializable return description; } - public void setDescription(final String description) + public void setDescription(String description) { this.description = description; } @@ -124,7 +124,7 @@ public class OperationExecutionPE implements IIdHolder, Serializable return error; } - public void setError(final String error) + public void setError(String error) { this.error = error; } -- GitLab