mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
タイトルからDocumentMetaをつくれるように
This commit is contained in:
parent
ecead0465d
commit
86b9e3ff3e
|
@ -4,6 +4,7 @@ import java.util.ArrayList;
|
|||
import one.nem.lacerta.model.document.tag.DocumentTag;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* ドキュメントのメタデータ
|
||||
|
@ -59,6 +60,11 @@ public class DocumentMeta {
|
|||
this.title = title;
|
||||
}
|
||||
|
||||
public DocumentMeta(String title) { // title only
|
||||
this.id = UUID.randomUUID().toString(); // 新規作成時想定なのでコンストラクタで生成してしまう(使う人が楽なので)
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
// Getter
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue
Block a user