Browse Source

read status

Martin Kunz 4 years ago
parent
commit
7ee7c84534

src/main/java/uraxis/impl/Activator.java → src/main/java/uraxis/Activator.java


src/main/java/uraxis/impl/MyDaemonDaemonService.java → src/main/java/uraxis/MyDaemonDaemonService.java


src/main/java/uraxis/impl/MyDaemonInstallationNodeContribution.java → src/main/java/uraxis/MyDaemonInstallationNodeContribution.java


src/main/java/uraxis/impl/MyDaemonInstallationNodeService.java → src/main/java/uraxis/MyDaemonInstallationNodeService.java


src/main/java/uraxis/impl/MyDaemonInterface.java → src/main/java/uraxis/MyDaemonInterface.java


src/main/java/uraxis/impl/MyDaemonProgramNodeContribution.java → src/main/java/uraxis/MyDaemonProgramNodeContribution.java


src/main/java/uraxis/impl/MyDaemonProgramNodeService.java → src/main/java/uraxis/MyDaemonProgramNodeService.java


src/main/java/uraxis/impl/UnknownResponseException.java → src/main/java/uraxis/UnknownResponseException.java


+ 0 - 34
src/main/resources/META-INF/LICENSE

@@ -1,34 +0,0 @@
-
-***********************************************************************
-* Insert your own licenses here                                       *
-* An example is shown below                                           *
-***********************************************************************
-
-
-Copyright (c) <year>, <copyright holder>
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-3. All advertising materials mentioning features or use of this software
-   must display the following acknowledgement:
-   This product includes software developed by the <organization>.
-4. Neither the name of the <organization> nor the
-   names of its contributors may be used to endorse or promote products
-   derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ''AS IS'' AND ANY
-EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
-DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

+ 0 - 38
src/main/resources/com/ur/urcap/examples/mydaemon/impl/daemon/hello-world.py

@@ -1,38 +0,0 @@
-#!/usr/bin/env python
-
-import time
-import sys
-
-import xmlrpclib
-from SimpleXMLRPCServer import SimpleXMLRPCServer
-
-title = ""
-
-def set_title(new_title):
-	global title
-	title = new_title
-	return title
-
-def get_title():
-	tmp = ""
-	if str(title):
-		tmp = title
-	else:
-		tmp = "No title set"
-	return tmp + " (Python)"
-
-def get_message(name):
-	if str(name):
-		return "Hello " + str(name) + ", welcome to PolyScope!"
-	else:
-		return "No name set"
-
-sys.stdout.write("MyDaemon daemon started")
-sys.stderr.write("MyDaemon daemon started")
-
-server = SimpleXMLRPCServer(("127.0.0.1", 40404))
-server.register_function(set_title, "set_title")
-server.register_function(get_title, "get_title")
-server.register_function(get_message, "get_message")
-server.serve_forever()
-

src/main/resources/com/ur/urcap/examples/mydaemon/impl/installation.html → src/main/resources/uraxis/installation.html


src/main/resources/com/ur/urcap/examples/mydaemon/impl/programnode.html → src/main/resources/uraxis/programnode.html


src/test/java/uraxis/impl/AppTest.java → src/test/java/uraxis/AppTest.java