TaskConfigCtrl.java
3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package com.ui.ctrl;
import com.alibaba.fastjson.JSON;
import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.domain.TaskModel;
import com.ui.model.req.GateWayTaskReq;
import com.ui.model.req.PageRequest;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Created by yoho on 2016/6/14.
* task 配置
*/
@Controller
@RequestMapping("taskConfigure")
public class TaskConfigCtrl {
Logger log = LoggerFactory.getLogger(TaskConfigCtrl.class);
@Autowired
HttpRestClient httpRestClient;
@RequestMapping("/toTaskConfigure")
public ModelAndView getHostGroups() {
return new ModelAndView("manager/taskConfigure");
}
@RequestMapping("/toYohoEventTaskConfigure")
public ModelAndView getYohoEventGroups( Model model) {
BaseResponse jsonEventsResp=httpRestClient.defaultPost(HttpUriContants.TASK__GATEWAY_ACCESS_EVENTS, null, BaseResponse.class);
List<Map<String,String>> jsonEventsObj=(List<Map<String,String>>)jsonEventsResp.getData();
if(jsonEventsObj==null){
jsonEventsObj = new ArrayList<Map<String,String>>();
}
model.addAttribute("jsonEvents", JSON.toJSON(jsonEventsObj));
return new ModelAndView("manager/yohoEventTaskConfigure");
}
@RequestMapping("/getTaskConfigure")
@ResponseBody
public BaseResponse getTaskConfigure(GateWayTaskReq req) {
BaseResponse response=httpRestClient.defaultPost(HttpUriContants.TASK__GETALL, req, BaseResponse.class);
return response;
}
@RequestMapping("/saveTaskModel")
@ResponseBody
public BaseResponse saveTaskModel(@RequestBody TaskModel taskModel) {
BaseResponse response=httpRestClient.defaultPost(HttpUriContants.TASK__SAVE, taskModel, BaseResponse.class);
return response;
}
@RequestMapping("/delTaskModel")
@ResponseBody
public BaseResponse delTaskModel(int id) {
Map map = new HashMap<>();
map.put("id",id);
BaseResponse response = httpRestClient.defaultGet(HttpUriContants.TASK__DELETE, BaseResponse.class, map);
return response;
}
@RequestMapping("/getTaskModelById")
@ResponseBody
public BaseResponse getTaskModelById(int id) {
Map map = new HashMap<>();
map.put("id",id);
BaseResponse response = httpRestClient.defaultGet(HttpUriContants.TASK__GET_ID, BaseResponse.class, map);
return response;
}
@RequestMapping("/getGatewayConfigure")
@ResponseBody
public BaseResponse getGateWayTaskConfigure(GateWayTaskReq req) {
BaseResponse response=httpRestClient.defaultPost(HttpUriContants.TASK__GATEWAYALL, req, BaseResponse.class);
return response;
}
}