Skip to content

Commit

Permalink
Merge pull request #38 from jrfinc/master
Browse files Browse the repository at this point in the history
GLTransaction extends Cloneable
  • Loading branch information
ar committed May 4, 2016
2 parents 51cabec + d8d5414 commit 3f94090
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/minigl/src/main/java/org/jpos/gl/GLTransaction.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.jpos.ee.Cloneable;
import org.jpos.util.Tags;

/**
Expand All @@ -39,7 +40,7 @@
*
* @author <a href="mailto:[email protected]">Alejandro Revilla</a>
*/
public class GLTransaction {
public class GLTransaction extends Cloneable {
private long id;
private Date timestamp;
private Date postDate;
Expand Down

0 comments on commit 3f94090

Please sign in to comment.