From ecec5cd1cb5a55944133a7d452b229e911c2fc19 Mon Sep 17 00:00:00 2001 From: Bojnourdi Date: Mon, 24 Aug 2015 16:50:04 +0200 Subject: [PATCH] Convert Boolean to boolean --- .../src/com/edf/gde/transferables/FileTO.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/projects/GDE-transferables/src/com/edf/gde/transferables/FileTO.java b/projects/GDE-transferables/src/com/edf/gde/transferables/FileTO.java index fc2cecc..a145d6c 100644 --- a/projects/GDE-transferables/src/com/edf/gde/transferables/FileTO.java +++ b/projects/GDE-transferables/src/com/edf/gde/transferables/FileTO.java @@ -21,8 +21,8 @@ public class FileTO implements Serializable { private String checksum; private Date creationDate; private Date updateDate; - private Boolean valid; - private Boolean deleted; + private boolean valid; + private boolean deleted; private Date deletionDate; private long attributeGroupId; private List chunks; @@ -31,7 +31,7 @@ public class FileTO implements Serializable { public FileTO() { } - public FileTO(long id, String name, long length, String checksum, Date creationDate, Date updateDate, Boolean valid, Boolean deleted, Date deletionDate, long attributeGroupId, Collection chunkCollection, long dataProfileId) { + public FileTO(long id, String name, long length, String checksum, Date creationDate, Date updateDate, boolean valid, boolean deleted, Date deletionDate, long attributeGroupId, Collection chunkCollection, long dataProfileId) { this.id = id; this.name = name; this.length = length; @@ -94,19 +94,19 @@ public class FileTO implements Serializable { this.updateDate = updateDate; } - public Boolean getValid() { + public boolean getValid() { return valid; } - public void setValid(Boolean valid) { + public void setValid(boolean valid) { this.valid = valid; } - public Boolean getDeleted() { + public boolean getDeleted() { return deleted; } - public void setDeleted(Boolean deleted) { + public void setDeleted(boolean deleted) { this.deleted = deleted; } -- 2.39.2