/**
* Method that make ClassC available for all clients using this web service.
*/
public ResponseWrapperC getClassC() {
ClassC data = (ClassC) getClassCAsClassB().getData();
ResponseWrapperC resp = new ResponseWrapperC();
resp.setData(data);
return resp;
}