In the below bean where the annotation is mapped to a DB column , how to get the values in a string.
I need all values like below
"TY_CD,ACTION_CD,ID"
public class SampleBO implements SQLData{
@DbColumnMap(columnName = "TY_CD")
private String typeCode;
@DbColumnMap(columnName = "ACTION_CD")
private String actionCd;
@DbColumnMap(columnName = "ID")
private String id;
}