All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsondoc.spring.boot.starter.JSONDocController Maven / Gradle / Ivy

There is a newer version: 1.2.23
Show newest version
package org.jsondoc.spring.boot.starter;

import java.util.ArrayList;
import java.util.List;

import org.jsondoc.core.pojo.JSONDoc;
import org.jsondoc.core.util.JSONDocUtils;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class JSONDocController {

	private String version;

	private String basePath;

	private List packages = new ArrayList();

	public JSONDocController(String version, String basePath, List packages) {
		this.version = version;
		this.basePath = basePath;
		this.packages = packages;
	}

	@RequestMapping(value = JSONDocConfig.JSONDOC_REQUEST_MAPPING, method = RequestMethod.GET, produces = { MediaType.APPLICATION_JSON_VALUE })
	public JSONDoc jsondoc() {
		return JSONDocUtils.getApiDoc(version, basePath, packages);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy