use of com.netsteadfast.greenstep.vo.VisionVO in project bamboobsc by billchen198318.
the class VisionSaveOrUpdateAction method delete.
private void delete() throws ControllerException, AuthorityException, ServiceException, Exception {
VisionVO vision = new VisionVO();
this.transformFields2ValueObject(vision, new String[] { "oid" });
DefaultResult<Boolean> result = this.visionLogicService.delete(vision);
this.message = result.getSystemMessage().getValue();
if (result.getValue() != null && result.getValue()) {
this.success = IS_YES;
}
}
Aggregations