Package org.hoteia.qalingo.core.pojo.catalog

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


    @GET
    @Path("virtual/{catalogCode}")
    @Produces(MediaType.APPLICATION_JSON)
    public CatalogPojoResponse getVirtuyalCatalogByCode(@PathParam("catalogCode") final String catalogCode) {
        CatalogPojoResponse catalogPojoResponse = new CatalogPojoResponse();
        CatalogPojo catalogPojo = catalogService.getVirtualCatalogByCode(catalogCode);
        catalogPojoResponse.setCatalog(catalogPojo);
        return catalogPojoResponse;
    }
View Full Code Here

TOP

Related Classes of org.hoteia.qalingo.core.pojo.catalog.CatalogPojoResponse

Copyright © 2018 www.massapicom. 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.