Browse Source

Remove finals - conflicts with CGLIB generated classes.

1.0.x
Ben Alex 21 years ago
parent
commit
0b6d0a5798
  1. 8
      domain/src/main/java/org/acegisecurity/domain/impl/AbstractPersistableEntity.java

8
domain/src/main/java/org/acegisecurity/domain/impl/AbstractPersistableEntity.java

@ -51,7 +51,7 @@ public abstract class AbstractPersistableEntity extends BusinessObject @@ -51,7 +51,7 @@ public abstract class AbstractPersistableEntity extends BusinessObject
* <code>false</code> otherwise
*/
@Transient
public final boolean isNew() {
public boolean isNew() {
return (getInternalId() == null);
}
@ -68,16 +68,16 @@ public abstract class AbstractPersistableEntity extends BusinessObject @@ -68,16 +68,16 @@ public abstract class AbstractPersistableEntity extends BusinessObject
*/
@Version
@Column(name="version", nullable=false)
public final int getVersion() {
public int getVersion() {
return version;
}
/**
* Sets the version numbers. Should only be used by the persistence layer.
* Sets the version numbers.
*
* @param version the new version number to use
*/
protected final void setVersion(int version) {
public void setVersion(int version) {
this.version = version;
}
}

Loading…
Cancel
Save