From 01eb085436212e88629f282900ad8cb2370e43bd Mon Sep 17 00:00:00 2001 From: Bojnourdi Date: Sun, 23 Aug 2015 09:00:40 +0200 Subject: [PATCH] Cleanup --- .../src/com/edf/gde/transferables/FileTO.java | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 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 e7cb272..fc2cecc 100644 --- a/projects/GDE-transferables/src/com/edf/gde/transferables/FileTO.java +++ b/projects/GDE-transferables/src/com/edf/gde/transferables/FileTO.java @@ -1,13 +1,12 @@ /* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. + * (C) 2015 EDF */ package com.edf.gde.transferables; import java.io.Serializable; import java.util.Collection; import java.util.Date; +import java.util.List; /** * @@ -26,7 +25,7 @@ public class FileTO implements Serializable { private Boolean deleted; private Date deletionDate; private long attributeGroupId; - private Collection chunkCollection; + private List chunks; private long dataProfileId; public FileTO() { @@ -43,7 +42,7 @@ public class FileTO implements Serializable { this.deleted = deleted; this.deletionDate = deletionDate; this.attributeGroupId = attributeGroupId; - this.chunkCollection = chunkCollection; + this.chunks = chunks; this.dataProfileId = dataProfileId; } @@ -127,12 +126,12 @@ public class FileTO implements Serializable { this.attributeGroupId = attributeGroupId; } - public Collection getChunkCollection() { - return chunkCollection; + public List getChunks() { + return chunks; } - public void setChunkCollection(Collection chunkCollection) { - this.chunkCollection = chunkCollection; + public void setChunks(List chunks) { + this.chunks = chunks; } public long getDataProfileId() { -- 2.39.2