
nl.tno.bim.nmd.controller.ProfileSetController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bimnmdservice Show documentation
Show all versions of bimnmdservice Show documentation
provides a REST api for retrieving nmd data from various data sources
The newest version!
package nl.tno.bim.nmd.controller;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import io.swagger.annotations.ApiOperation;
import nl.tno.bim.nmd.domain.NmdProfileSet;
@CrossOrigin()
@RestController()
@RequestMapping(value = "/api")
public class ProfileSetController extends BaseNMDController{
public ProfileSetController() {
super();
}
@ApiOperation(value = "Get ProfileSet(s) By ProductCard Ids ")
@RequestMapping(method = RequestMethod.GET, value = "/{versionId}/profileset/{ids}")
public ResponseEntity
© 2015 - 2025 Weber Informatics LLC | Privacy Policy