parentModel暫定実装

This commit is contained in:
ろむねこ 2024-06-21 09:07:43 +09:00
parent 076deade5f
commit f7e0e8570f
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -1,4 +1,62 @@
package one.nem.kidshift.model;
public class parentModel {
String internalId;
String displayName;
String homeGroupId;
String email;
public parentModel(String internalId, String displayName, String homeGroupId, String email) {
this.internalId = internalId;
this.displayName = displayName;
this.homeGroupId = homeGroupId;
this.email = email;
}
public parentModel(String internalId, String displayName, String homeGroupId) {
this.internalId = internalId;
this.displayName = displayName;
this.homeGroupId = homeGroupId;
}
public parentModel(String internalId, String displayName) {
this.internalId = internalId;
this.displayName = displayName;
}
// Getter
public String getInternalId() {
return internalId;
}
public String getDisplayName() {
return displayName;
}
public String getHomeGroupId() {
return homeGroupId;
}
public String getEmail() {
return email;
}
// Setter
public void setInternalId(String internalId) {
this.internalId = internalId;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public void setHomeGroupId(String homeGroupId) {
this.homeGroupId = homeGroupId;
}
public void setEmail(String email) {
this.email = email;
}
}