diff --git a/app/src/main/java/org/ntlab/acanthus_client/entities/AnimationJson.java b/app/src/main/java/org/ntlab/acanthus_client/entities/AnimationJson.java index 1c9421e..5c586d0 100644 --- a/app/src/main/java/org/ntlab/acanthus_client/entities/AnimationJson.java +++ b/app/src/main/java/org/ntlab/acanthus_client/entities/AnimationJson.java @@ -1,15 +1,14 @@ package org.ntlab.acanthus_client.entities; import java.util.ArrayList; -import java.util.Collection; //----------------------------------------------------------------- // アニメーション public class AnimationJson { private Integer aid; - private Integer ownerUid; private String animationName; - private ArrayList editors; + private Integer owner; + //private ArrayList editors; private String createdDate; //----------------------------------------------------------------- @@ -20,7 +19,7 @@ public Integer getAid() {return this.aid;} - public ArrayList getEditor(){return this.editors;} + //public ArrayList getEditor(){return this.editors;} public String getCreatedDate(){return this.createdDate;} @@ -32,11 +31,11 @@ this.animationName = name; } - public void setOwnerUid(Integer uid) { - this.ownerUid = uid; + public void setOwner(Integer uid) { + this.owner = uid; } - public void addEditors(Editor editor) { - this.editors.add(editor); - } +// public void addEditors(Editor editor) { +// this.editors.add(editor); +// } }