Plain Old Java Object (POJO) クラスを作成し、そのインスタンスを返します。POJO クラスは次のようになります。
public class MyPOJO{
private boolean booleanValue;
private Integer integerValue;
public void setBooleanValue(boolean booleanValue){
this.booleanValue = booleanValue
}
public void setIntegerValue(Integer integerValue){
this.integerValue = integerValue
}
public boolean getBooleanValue(){
return this.booleanValue;
}
public Integer getIntegerValue(){
return this.integerValue;
}
}
メソッドのシグネチャを変更して、次のようにする必要があります。
public MyPOJO isDocumentsDeletedFormDB(String strDocumentsID){
/*
* Your logic
*/
MyPOJO pojo = new MyPOJO();
pojo.setIntegerValue(/* Your integer value */);
pojo.setBooleanValue(/* Your boolean value */);
return pojo;
}