Salome HOME
Netbeans project fixes
[modules/gde.git] / projects / GDE-transferables / src / com / edf / gde / transferables / StudyTO.java
diff --git a/projects/GDE-transferables/src/com/edf/gde/transferables/StudyTO.java b/projects/GDE-transferables/src/com/edf/gde/transferables/StudyTO.java
deleted file mode 100644 (file)
index 36436ab..0000000
+++ /dev/null
@@ -1,122 +0,0 @@
-/*
- * (C) 2015 EDF
- */
-package com.edf.gde.transferables;
-
-import java.io.Serializable;
-import java.util.Date;
-
-/**
- *
- * @author F62173
- */
-public class StudyTO implements Serializable {
-
-    private static final long serialVersionUID = 1L;
-    private long id;
-    private String name;
-    private Date creationDate;
-    private Date updateDate;
-    private boolean valid;
-    private boolean deleted;
-    private Date deletionDate;
-    private long attributeGroupId;
-    private long profileId;
-    private boolean locked;
-
-    public StudyTO() {
-    }
-
-    public StudyTO(long id, String name, Date creationDate, Date updateDate, boolean valid, boolean deleted, Date deletionDate, long attributeGroupId, long profileId) {
-        this.id = id;
-        this.name = name;
-        this.creationDate = creationDate;
-        this.updateDate = updateDate;
-        this.valid = valid;
-        this.deleted = deleted;
-        this.deletionDate = deletionDate;
-        this.attributeGroupId = attributeGroupId;
-        this.profileId = profileId;
-    }
-
-    public long getId() {
-        return id;
-    }
-
-    public void setId(long id) {
-        this.id = id;
-    }
-
-    public String getName() {
-        return name;
-    }
-
-    public void setName(String name) {
-        this.name = name;
-    }
-
-    public Date getCreationDate() {
-        return creationDate;
-    }
-
-    public void setCreationDate(Date creationDate) {
-        this.creationDate = creationDate;
-    }
-
-    public Date getUpdateDate() {
-        return updateDate;
-    }
-
-    public void setUpdateDate(Date updateDate) {
-        this.updateDate = updateDate;
-    }
-
-    public boolean getValid() {
-        return valid;
-    }
-
-    public void setValid(boolean valid) {
-        this.valid = valid;
-    }
-
-    public boolean getDeleted() {
-        return deleted;
-    }
-
-    public void setDeleted(boolean deleted) {
-        this.deleted = deleted;
-    }
-
-    public Date getDeletionDate() {
-        return deletionDate;
-    }
-
-    public void setDeletionDate(Date deletionDate) {
-        this.deletionDate = deletionDate;
-    }
-
-    public long getAttributeGroupId() {
-        return attributeGroupId;
-    }
-
-    public void setAttributeGroupId(long attributeGroupId) {
-        this.attributeGroupId = attributeGroupId;
-    }
-
-    public long getProfileId() {
-        return profileId;
-    }
-
-    public void setProfileId(long profileId) {
-        this.profileId = profileId;
-    }
-
-    public boolean isLocked() {
-        return locked;
-    }
-
-    public void setLocked(boolean locked) {
-        this.locked = locked;
-    }
-
-}