@Controller @RequestMapping(value="/user/tag") public class UserTagController extends AbstractUserController
apiKeyService, userService| Constructor and Description |
|---|
UserTagController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.web.servlet.ModelAndView |
create(String collectionId,
String recordId,
String tag,
String callback,
Principal principal) |
org.springframework.web.servlet.ModelAndView |
delete(Long tagId,
String callback,
Principal principal) |
org.springframework.web.servlet.ModelAndView |
delete(String tag,
String callback,
Principal principal) |
org.springframework.web.servlet.ModelAndView |
delete(String collectionId,
String recordId,
String tag,
String callback,
Principal principal) |
org.springframework.web.servlet.ModelAndView |
list(String tagFilter,
String callback,
Principal principal) |
org.springframework.web.servlet.ModelAndView |
list(String collectionId,
String recordId,
String tagFilter,
String callback,
Principal principal) |
org.springframework.web.servlet.ModelAndView |
listDistinct(String callback,
Principal principal) |
copyUserObjectData, getApiId, getUserByApiId, getUserByPrincipal@RequestMapping(produces="application/json",
method=GET)
public org.springframework.web.servlet.ModelAndView list(@RequestParam(value="tag",required=false)
String tagFilter,
@RequestParam(value="callback",required=false)
String callback,
Principal principal)
@RequestMapping(value="/{collectionId}/{recordId}",
produces="application/json",
method=GET)
public org.springframework.web.servlet.ModelAndView list(@PathVariable
String collectionId,
@PathVariable
String recordId,
@RequestParam(value="tag",required=false)
String tagFilter,
@RequestParam(value="callback",required=false)
String callback,
Principal principal)
@RequestMapping(value="/cloud",
produces="application/json",
method=GET)
public org.springframework.web.servlet.ModelAndView listDistinct(@RequestParam(value="callback",required=false)
String callback,
Principal principal)
@RequestMapping(value="/{collectionId}/{recordId}",
produces="application/json",
method=POST)
public org.springframework.web.servlet.ModelAndView create(@PathVariable
String collectionId,
@PathVariable
String recordId,
@RequestParam(value="tag",required=true)
String tag,
@RequestParam(value="callback",required=false)
String callback,
Principal principal)
@RequestMapping(produces="application/json",
method=DELETE)
public org.springframework.web.servlet.ModelAndView delete(@RequestParam(value="tag",required=true)
String tag,
@RequestParam(value="callback",required=false)
String callback,
Principal principal)
@RequestMapping(value="/{tagId}",
produces="application/json",
method=DELETE)
public org.springframework.web.servlet.ModelAndView delete(@PathVariable
Long tagId,
@RequestParam(value="callback",required=false)
String callback,
Principal principal)
@RequestMapping(value="/{collectionId}/{recordId}",
produces="application/json",
method=DELETE)
public org.springframework.web.servlet.ModelAndView delete(@PathVariable
String collectionId,
@PathVariable
String recordId,
@RequestParam(value="tag",required=false)
String tag,
@RequestParam(value="callback",required=false)
String callback,
Principal principal)
Copyright © 2017. All rights reserved.