@Controller @RequestMapping(value="/plugin/standardsregistry") public class StandardsRegistryController extends MolgenisPluginController
| Modifier and Type | Field and Description |
|---|---|
static String |
ID |
static String |
URI |
PLUGIN_URI_PREFIX| Constructor and Description |
|---|
StandardsRegistryController(DataService dataService,
MetaDataService metaDataService,
MolgenisPermissionService molgenisPermissionService,
UntypedTagService tagService,
MetaDataSearchService metaDataSearchService) |
| Modifier and Type | Method and Description |
|---|---|
String |
getModelDocumentation(org.springframework.ui.Model model) |
String |
getModelDocumentation(String packageName,
Boolean embed,
org.springframework.ui.Model model) |
org.molgenis.standardsregistry.StandardsRegistryController.PackageResponse |
getPackage(String packageName) |
Collection<PackageTreeNode> |
getTree(String packageName) |
String |
getUml(String selectedPackageName,
org.springframework.ui.Model model) |
String |
init(String showPackageNotFound,
org.springframework.ui.Model model) |
org.molgenis.standardsregistry.StandardsRegistryController.PackageSearchResponse |
search(org.molgenis.standardsregistry.StandardsRegistryController.PackageSearchRequest packageSearchRequest,
org.springframework.ui.Model model) |
String |
search(String packageSearchValue,
org.springframework.ui.Model model) |
String |
showView(String selectedPackageName,
org.springframework.ui.Model model) |
getId, getUripublic static final String ID
public static final String URI
@Autowired public StandardsRegistryController(DataService dataService, MetaDataService metaDataService, MolgenisPermissionService molgenisPermissionService, UntypedTagService tagService, MetaDataSearchService metaDataSearchService)
@RequestMapping(method=GET) public String init(@RequestParam(value="showPackageNotFound",required=false) String showPackageNotFound, org.springframework.ui.Model model)
@RequestMapping(value="/documentation",
method=GET)
public String getModelDocumentation(org.springframework.ui.Model model)
@RequestMapping(value="/documentation/{packageName}",
method=GET)
public String getModelDocumentation(@PathVariable(value="packageName")
String packageName,
@RequestParam(value="embed",required=false)
Boolean embed,
org.springframework.ui.Model model)
@RequestMapping(value="/search",
method=GET)
public String search(@RequestParam(value="packageSearchValue")
String packageSearchValue,
org.springframework.ui.Model model)
@RequestMapping(value="/search",
method=POST)
@ResponseBody
public org.molgenis.standardsregistry.StandardsRegistryController.PackageSearchResponse search(@RequestBody
org.molgenis.standardsregistry.StandardsRegistryController.PackageSearchRequest packageSearchRequest,
org.springframework.ui.Model model)
@RequestMapping(value="/details",
method=GET)
public String showView(@RequestParam(value="package",required=false)
String selectedPackageName,
org.springframework.ui.Model model)
@RequestMapping(value="/uml",
method=GET)
public String getUml(@RequestParam(value="package",required=true)
String selectedPackageName,
org.springframework.ui.Model model)
@RequestMapping(value="/getPackage",
method=GET)
@ResponseBody
public org.molgenis.standardsregistry.StandardsRegistryController.PackageResponse getPackage(@RequestParam(value="package")
String packageName)
@RequestMapping(value="/getTreeData",
method=GET)
@ResponseBody
public Collection<PackageTreeNode> getTree(@RequestParam(value="package")
String packageName)
Copyright © 2015. All Rights Reserved.