DefaultBranchをMetaに移動, Repositoryを廃止

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

View File

@ -18,20 +18,12 @@ public class DocumentDetail {
*/
DocumentMeta meta;
/**
* ドキュメントのデフォルトブランチ(String)
*/
String defaultBranch;
Repository repository;
// Constructor
public DocumentDetail() {
}
public DocumentDetail(DocumentMeta meta, String defaultBranch) {
public DocumentDetail(DocumentMeta meta) {
this.meta = meta;
this.defaultBranch = defaultBranch;
}
// Getter
@ -43,21 +35,6 @@ public class DocumentDetail {
return meta;
}
/**
* ドキュメントのデフォルトブランチ(String)を取得する
*/
public String getDefaultBranch() {
return defaultBranch;
}
/**
* ドキュメントのリポジトリを取得する
*/
public Repository getRepository() {
return repository;
}
// Setter
/**
@ -68,19 +45,4 @@ public class DocumentDetail {
this.meta = meta;
}
/**
* ドキュメントのデフォルトブランチ(String)を設定する
* @param defaultBranch ドキュメントのデフォルトブランチ
*/
public void setDefaultBranch(String defaultBranch) {
this.defaultBranch = defaultBranch;
}
/**
* ドキュメントのリポジトリを設定する
*/
public void setRepository(Repository repository) {
this.repository = repository;
}
}