use of gov.ca.cwds.cals.service.dto.rfa.collection.CollectionDTO in project cals-api by ca-cwds.
the class FormAHelper method getRFA1aForms.
public CollectionDTO<RFA1aFormDTO> getRFA1aForms() {
WebTarget target = clientTestRule.target(API.RFA_1A_FORMS);
Invocation.Builder invocation = target.request(MediaType.APPLICATION_JSON);
return invocation.get(new GenericType<CollectionDTO<RFA1aFormDTO>>() {
});
}
Aggregations