Examples of CatalogListPojoResponse


Examples of org.hoteia.qalingo.core.pojo.catalog.CatalogListPojoResponse

    @GET
    @Path("virtual")
    @Produces(MediaType.APPLICATION_JSON)
    public CatalogListPojoResponse getAllVirtuelCatalogs() {
        CatalogListPojoResponse catalogListPojoResponse = new CatalogListPojoResponse();
        List<CatalogPojo> catalogs = catalogService.getAllCatalogMasters();
        catalogListPojoResponse.setCatalogs(catalogs);
        return catalogListPojoResponse;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.