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

org.kurento.room.rest.RoomController Maven / Gradle / Ivy

There is a newer version: 6.6.0
Show newest version
package org.kurento.room.rest;

import java.util.Set;

import org.kurento.room.RoomManager;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 *
 * @author Raquel Díaz González
 */
@RestController
public class RoomController {

	@Autowired
	private RoomManager roomManager;

	@RequestMapping("/getAllRooms")
	public Set getAllRooms() {
		return roomManager.getRooms();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy