Skip to content
Snippets Groups Projects
Commit e9de68a4 authored by pkupczyk's avatar pkupczyk
Browse files

SSDM-3085 : V3 AS API - executeOperations executions table - remove final...

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
parent 4638dda1
No related branches found
No related tags found
No related merge requests found
...@@ -72,19 +72,19 @@ public class OperationExecutionPE implements IIdHolder, Serializable ...@@ -72,19 +72,19 @@ public class OperationExecutionPE implements IIdHolder, Serializable
@SequenceGenerator(name = SequenceNames.OPERATION_EXECUTIONS_SEQUENCE, sequenceName = SequenceNames.OPERATION_EXECUTIONS_SEQUENCE, allocationSize = 1) @SequenceGenerator(name = SequenceNames.OPERATION_EXECUTIONS_SEQUENCE, sequenceName = SequenceNames.OPERATION_EXECUTIONS_SEQUENCE, allocationSize = 1)
@Id @Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = SequenceNames.OPERATION_EXECUTIONS_SEQUENCE) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = SequenceNames.OPERATION_EXECUTIONS_SEQUENCE)
public final Long getId() public Long getId()
{ {
return id; return id;
} }
public final void setId(final Long id) public void setId(Long id)
{ {
this.id = id; this.id = id;
} }
@NotNull(message = ValidationMessages.CODE_NOT_NULL_MESSAGE) @NotNull(message = ValidationMessages.CODE_NOT_NULL_MESSAGE)
@Length(min = 1, max = Code.CODE_LENGTH_MAX, message = ValidationMessages.CODE_LENGTH_MESSAGE) @Length(min = 1, max = Code.CODE_LENGTH_MAX, message = ValidationMessages.CODE_LENGTH_MESSAGE)
public final String getCode() public String getCode()
{ {
return code; return code;
} }
...@@ -113,7 +113,7 @@ public class OperationExecutionPE implements IIdHolder, Serializable ...@@ -113,7 +113,7 @@ public class OperationExecutionPE implements IIdHolder, Serializable
return description; return description;
} }
public void setDescription(final String description) public void setDescription(String description)
{ {
this.description = description; this.description = description;
} }
...@@ -124,7 +124,7 @@ public class OperationExecutionPE implements IIdHolder, Serializable ...@@ -124,7 +124,7 @@ public class OperationExecutionPE implements IIdHolder, Serializable
return error; return error;
} }
public void setError(final String error) public void setError(String error)
{ {
this.error = error; this.error = error;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment