add DocumentDTO class
This commit is contained in:
parent
e3defefef3
commit
717c181b74
|
@ -1,6 +1,41 @@
|
|||
package com.mixel.docusphere.dto;
|
||||
|
||||
// FIXME: Implement document DTO
|
||||
public class DocumentDTO {
|
||||
private String name;
|
||||
private String description;
|
||||
private String s3Path;
|
||||
private String userId;
|
||||
|
||||
// Getters and Setters
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getS3Path() {
|
||||
return s3Path;
|
||||
}
|
||||
|
||||
public void setS3Path(String s3Path) {
|
||||
this.s3Path = s3Path;
|
||||
}
|
||||
|
||||
public String getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue