Package com.skymobi.monitor.model

Examples of com.skymobi.monitor.model.TimeRange


        projectService.saveProject(project);
        return "redirect:/projects/" + projectName;
    }
    @RequestMapping(value = "/projects/{projectName}/setting/timeRange", method = RequestMethod.POST)
    public @ResponseBody String timeRange(@PathVariable String projectName, HttpEntity<TimeRange> entity) {
        TimeRange timeRange=entity.getBody();
        Assert.notNull(timeRange,"time rage should not be null");
        Project project = projectService.findProject(projectName);

        project.setTimeRange(timeRange);
View Full Code Here

TOP

Related Classes of com.skymobi.monitor.model.TimeRange

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.