@Controller public class CommonController extends Object
| Constructor and Description |
|---|
CommonController() |
| Modifier and Type | Method and Description |
|---|---|
void |
deleteProfile(javax.servlet.http.HttpServletResponse res,
String id) |
void |
getProfile(javax.servlet.http.HttpServletResponse res,
String id) |
void |
getSchema(javax.servlet.http.HttpServletResponse res,
String name) |
void |
invalidateProfile(javax.servlet.http.HttpServletResponse res,
String id) |
void |
validate(javax.servlet.http.HttpServletResponse res,
String id) |
@RequestMapping(value="/ui/**/getProfile")
public void getProfile(javax.servlet.http.HttpServletResponse res,
@RequestParam(value="id",required=true)
String id)
throws Exception
Exception@RequestMapping(value="/ui/**/getSchema")
public void getSchema(javax.servlet.http.HttpServletResponse res,
@RequestParam(value="name",required=true)
String name)
throws Exception
Exception@RequestMapping(value="/ui/**/validateProfile")
public void validate(javax.servlet.http.HttpServletResponse res,
@RequestParam(value="id",required=true)
String id)
throws Exception
Exception@RequestMapping(value="/ui/**/invalidateProfile")
public void invalidateProfile(javax.servlet.http.HttpServletResponse res,
@RequestParam(value="id",required=true)
String id)
throws Exception
ExceptionCopyright © 2017. All rights reserved.