Index: .idea/sonarIssues.xml =================================================================== diff -u -r1e4e7228e282b9ec53b7bb0eb4642b2fece30f47 -rae99639b6134da4fe60b87f40c53cd70acbe11ab --- .idea/sonarIssues.xml (.../sonarIssues.xml) (revision 1e4e7228e282b9ec53b7bb0eb4642b2fece30f47) +++ .idea/sonarIssues.xml (.../sonarIssues.xml) (revision ae99639b6134da4fe60b87f40c53cd70acbe11ab) @@ -13,6 +13,11 @@ + + + + + @@ -1723,6 +1728,11 @@ + + + + + Index: .idea/sonarlint/issuestore/index.pb =================================================================== diff -u -r361f605a7d9e994eaf3ed6b36a04ed610e3bf0f7 -rae99639b6134da4fe60b87f40c53cd70acbe11ab --- .idea/sonarlint/issuestore/index.pb (.../index.pb) (revision 361f605a7d9e994eaf3ed6b36a04ed610e3bf0f7) +++ .idea/sonarlint/issuestore/index.pb (.../index.pb) (revision ae99639b6134da4fe60b87f40c53cd70acbe11ab) @@ -4,4 +4,18 @@ .gitignore,a\5\a5cc2925ca8258af241be7e5b0381edf30266302 : -allman.xml,d\2\d29e779ea0132c9582bb782359b9bd1a2fe06548 \ No newline at end of file +allman.xml,d\2\d29e779ea0132c9582bb782359b9bd1a2fe06548 +: + +github.eml,b\b\bb893d616e5eae5649b0dd69883f58aba1e63986 +E +backend.userlibraries,a\1\a10c7f856e09687aed3b8e420366eb9df196ca85 +~ +N_BT__SP_488__close__time_1h__comment_Compare_Spec__RV___review_SR__admin.patch,d\f\df9b1720fcb93b58c7f43f8cd094c7bcfaeca34a +8 +.project,f\8\f8b41ce76d7b80d2b47e91b5f92c15f00eccf187 +: + +.classpath,3\5\354079a72b91a4280407c16a36f47d1986fd85a5 +9 + README.md,8\e\8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d \ No newline at end of file FishEye: Tag ae99639b6134da4fe60b87f40c53cd70acbe11ab refers to a dead (removed) revision in file `standard/project/web/src/main/java/egovframework/api/jsTreeServiceFramework/security/controller/SecurityController.java'. FishEye: No comparison available. Pass `N' to diff? Index: standard/project/web/src/main/java/egovframework/com/ext/jstree/support/security/controller/SecurityController.java =================================================================== diff -u --- standard/project/web/src/main/java/egovframework/com/ext/jstree/support/security/controller/SecurityController.java (revision 0) +++ standard/project/web/src/main/java/egovframework/com/ext/jstree/support/security/controller/SecurityController.java (revision ae99639b6134da4fe60b87f40c53cd70acbe11ab) @@ -0,0 +1,20 @@ +package egovframework.com.ext.jstree.support.security.controller; + +import egovframework.com.cmm.annotation.IncludedInfo; +import egovframework.com.ext.jstree.support.mvc.GenericAbstractController; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; + +/** + * Created by Administrator on 2017-07-24. + */ +@Controller +@RequestMapping(value = {"/api/jsTreeServiceFramework/security"}) +public class SecurityController extends GenericAbstractController { + + @IncludedInfo(name = "CSRF json", listUrl = "/api/jsTreeServiceFramework/security/csrf.do", order = 3300, gid = 313) + @RequestMapping("/csrf.do") + public String jsTreeCSRFtoJson() { + return "egovframework/com/ext/jstree/csrf"; + } +}