/* © 2010 Stephan Reichholf <stephan at reichholf dot net>
*
* Licensed under the Create-Commons Attribution-Noncommercial-Share Alike 3.0 Unported
* http://creativecommons.org/licenses/by-nc-sa/3.0/
*/
package net.reichholf.dreamdroid.helpers.enigma2.requesthandler;
import net.reichholf.dreamdroid.helpers.enigma2.URIStore;
import net.reichholf.dreamdroid.parsers.enigma2.saxhandler.E2DeviceInfoHandler;
/**
* @author sre
*
*/
public class DeviceInfoRequestHandler extends AbstractSimpleRequestHandler {
public DeviceInfoRequestHandler(){
super(URIStore.DEVICE_INFO, new E2DeviceInfoHandler());
}
}