
nl.tno.bim.nmd.controller.ProfileSetController Maven / Gradle / Ivy
package nl.tno.bim.nmd.controller;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.log4j.Logger;
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{
private final static Logger logger = Logger.getLogger(ProfileSetController.class);
@Override
protected Logger getLogger() {
return ProfileSetController.logger;
}
@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