Getter追加

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

View File

@ -112,6 +112,27 @@ public class DocumentMeta {
return tagIds;
}
/**
* PublicPathを取得する
*/
public PublicPath getPath() {
return path;
}
/**
* ドキュメントの作者(String)を取得する
*/
public String getAuthor() {
return author;
}
/**
* ドキュメントのデフォルトブランチ(String)を取得する
*/
public String getDefaultBranch() {
return defaultBranch;
}
// Setter
/**