| | |
| | | import de.uhilger.tango.api.MediaSteuerung; |
| | | import de.uhilger.tango.api.StopServerHandler; |
| | | import de.uhilger.tango.api.StorageHandler; |
| | | import de.uhilger.tango.api.StreamHandler; |
| | | import de.uhilger.tango.store.FileStorage; |
| | | import de.uhilger.tango.entity.Ablageort; |
| | | import java.io.File; |
| | |
| | | public static final String RB_STRG = "strg"; |
| | | public static final String RB_GSTRG = "gstrg"; |
| | | public static final String RB_ALIST= "alist"; |
| | | public static final String RB_STRM = "strm"; |
| | | //public static final String RB_UI_ROOT = "uiroot"; |
| | | public static final String RB_STOP_SERVER = "stopServer"; |
| | | //public static final String RB_ABLAGE_TEST = "testAblage"; |
| | |
| | | server.createContext(ctx + rb.getString(RB_STRG), new MediaSteuerung(conf)); |
| | | server.createContext(ctx + rb.getString(RB_GSTRG), new GeraetSteuerung(conf)); |
| | | server.createContext(ctx + rb.getString(RB_ALIST), new ListHandler(conf)); |
| | | server.createContext(ctx + rb.getString(RB_STRM), new StreamHandler(conf)); |
| | | server.createContext(ctx + rb.getString(RB_STOP_SERVER), new StopServerHandler()); |
| | | //server.setExecutor(Executors.newFixedThreadPool(20)); |
| | | server.setExecutor(Executors.newFixedThreadPool(5)); |