* Adding source files for the tutorial BAEL-2788 * Made changes to the code for the review comments
25 lines
370 B
Java
25 lines
370 B
Java
package com.baeldung.domain;
|
|
|
|
public class Approval {
|
|
|
|
private String id;
|
|
private boolean status;
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public boolean isStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(boolean status) {
|
|
this.status = status;
|
|
}
|
|
|
|
}
|