Setter追加

This commit is contained in:
r-ca 2024-01-14 16:06:36 +09:00
parent bf01610eb5
commit 14fbb56dcd
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -175,6 +175,22 @@ public class DocumentMeta {
this.tags = tags;
}
/**
* PublicPathを設定する
* @param path PublicPath
*/
public void setPath(PublicPath path) {
this.path = path;
}
/**
* ドキュメントの作者(String)を設定する
* @param author ドキュメントの作者
*/
public void setAuthor(String author) {
this.author = author;
}
/**
* updatedAtを現在時刻に設定する
*/