Does Beanutils or any associated classes provide a method to populate a readonly property like the example below?
class MyBean {
private String check;
public String getCheck() {
return check;
}
@SuppressWarnings("unused")
private void setCheck(String check) {
this.check = check;
}
}
Thanks for your help
Sorry for posting this question actually this can be achieved using reflection and not beanUtils,
This is what i was looking for.
Vaibhav