Examples of OkResponse


Examples of org.fao.geonet.domain.responses.OkResponse

            throws Exception {
        int iId = Integer.parseInt(id);

        serviceRepository.delete(iId);

        return new OkResponse();
    }
View Full Code Here

Examples of org.fao.geonet.domain.responses.OkResponse

        }

        // launching the service on the fly
        jeevesApplicationContext.getBean(JeevesEngine.class).loadConfigDB(jeevesApplicationContext, Integer.valueOf(serviceId));

        return new OkResponse();
    }
View Full Code Here

Examples of org.fao.geonet.domain.responses.OkResponse

    public @ResponseBody
    OkResponse exec(@RequestParam MultiValueMap parameters) throws Exception {
        // Process parameters and save capabilities information in database
        saveCswCapabilitiesInfo(parameters);

        return new OkResponse();
    }
View Full Code Here

Examples of org.fao.geonet.domain.responses.OkResponse

    @RequestMapping(value = "/{lang}/admin.config.csw.customelementset.save", produces = {
            MediaType.APPLICATION_XML_VALUE, MediaType.APPLICATION_JSON_VALUE })
    public @ResponseBody
    OkResponse exec(@RequestParam("xpath") List<String> xpathList) throws Exception {
        saveCustomElementSets(xpathList);
        return new OkResponse();
  }
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.