aboutsummaryrefslogtreecommitdiff
path: root/subsonic-booter/src/main/resources
diff options
context:
space:
mode:
Diffstat (limited to 'subsonic-booter/src/main/resources')
-rw-r--r--subsonic-booter/src/main/resources/META-INF/MANIFEST.MF2
-rw-r--r--subsonic-booter/src/main/resources/applicationContext-agent.xml33
-rw-r--r--subsonic-booter/src/main/resources/applicationContext-deployer.xml15
-rw-r--r--subsonic-booter/src/main/resources/applicationContext-mac.xml18
-rw-r--r--subsonic-booter/src/main/resources/images/subsonic-16.pngbin734 -> 0 bytes
-rw-r--r--subsonic-booter/src/main/resources/images/subsonic-21.pngbin673 -> 0 bytes
-rw-r--r--subsonic-booter/src/main/resources/images/subsonic-32.pngbin1444 -> 0 bytes
-rw-r--r--subsonic-booter/src/main/resources/images/subsonic-512.pngbin33807 -> 0 bytes
-rw-r--r--subsonic-booter/src/main/resources/images/subsonic-started-16.pngbin810 -> 0 bytes
-rw-r--r--subsonic-booter/src/main/resources/images/subsonic-stopped-16.pngbin771 -> 0 bytes
-rw-r--r--subsonic-booter/src/main/resources/subsonic.keystorebin1237 -> 0 bytes
11 files changed, 0 insertions, 68 deletions
diff --git a/subsonic-booter/src/main/resources/META-INF/MANIFEST.MF b/subsonic-booter/src/main/resources/META-INF/MANIFEST.MF
deleted file mode 100644
index 708d0ddd..00000000
--- a/subsonic-booter/src/main/resources/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,2 +0,0 @@
-Manifest-Version: 1.0
-Main-Class: net.sourceforge.subsonic.booter.Main
diff --git a/subsonic-booter/src/main/resources/applicationContext-agent.xml b/subsonic-booter/src/main/resources/applicationContext-agent.xml
deleted file mode 100644
index f54bf9b2..00000000
--- a/subsonic-booter/src/main/resources/applicationContext-agent.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
-
- <bean id="service" class="org.springframework.remoting.rmi.RmiProxyFactoryBean">
- <property name="serviceUrl" value="rmi://localhost:9412/SubsonicDeployerService"/>
- <property name="serviceInterface" value="net.sourceforge.subsonic.booter.deployer.SubsonicDeployerService"/>
- <property name="lookupStubOnStartup" value="false"/>
- <property name="refreshStubOnConnectFailure" value="true"/>
- </bean>
-
- <bean id="agent" class="net.sourceforge.subsonic.booter.agent.SubsonicAgent">
- <constructor-arg ref="service"/>
- <property name="frame" ref="frame"/>
- </bean>
-
- <bean id="frame" class="net.sourceforge.subsonic.booter.agent.SubsonicFrame">
- <constructor-arg ref="agent"/>
- <constructor-arg ref="statusPanel"/>
- <constructor-arg ref="settingsPanel"/>
- </bean>
-
- <bean id="settingsPanel" class="net.sourceforge.subsonic.booter.agent.SettingsPanel">
- <constructor-arg ref="agent"/>
- </bean>
-
- <bean id="statusPanel" class="net.sourceforge.subsonic.booter.agent.StatusPanel">
- <constructor-arg ref="agent"/>
- </bean>
-
-</beans> \ No newline at end of file
diff --git a/subsonic-booter/src/main/resources/applicationContext-deployer.xml b/subsonic-booter/src/main/resources/applicationContext-deployer.xml
deleted file mode 100644
index ac4e46de..00000000
--- a/subsonic-booter/src/main/resources/applicationContext-deployer.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
-
- <bean id="service" class="net.sourceforge.subsonic.booter.deployer.SubsonicDeployer"/>
-
- <bean class="org.springframework.remoting.rmi.RmiServiceExporter">
- <property name="serviceName" value="SubsonicDeployerService"/>
- <property name="service" ref="service"/>
- <property name="serviceInterface" value="net.sourceforge.subsonic.booter.deployer.SubsonicDeployerService"/>
- <property name="registryPort" value="9412"/>
- </bean>
-</beans> \ No newline at end of file
diff --git a/subsonic-booter/src/main/resources/applicationContext-mac.xml b/subsonic-booter/src/main/resources/applicationContext-mac.xml
deleted file mode 100644
index 36d9a549..00000000
--- a/subsonic-booter/src/main/resources/applicationContext-mac.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
-
- <bean id="deployer" class="net.sourceforge.subsonic.booter.deployer.SubsonicDeployer"/>
-
- <bean id="frame" class="net.sourceforge.subsonic.booter.mac.SubsonicFrame">
- <constructor-arg ref="deployer"/>
- </bean>
-
- <bean id="controller" class="net.sourceforge.subsonic.booter.mac.SubsonicController">
- <constructor-arg ref="deployer"/>
- <constructor-arg ref="frame"/>
- </bean>
-
-</beans> \ No newline at end of file
diff --git a/subsonic-booter/src/main/resources/images/subsonic-16.png b/subsonic-booter/src/main/resources/images/subsonic-16.png
deleted file mode 100644
index eba8bb57..00000000
--- a/subsonic-booter/src/main/resources/images/subsonic-16.png
+++ /dev/null
Binary files differ
diff --git a/subsonic-booter/src/main/resources/images/subsonic-21.png b/subsonic-booter/src/main/resources/images/subsonic-21.png
deleted file mode 100644
index 6ce85a4f..00000000
--- a/subsonic-booter/src/main/resources/images/subsonic-21.png
+++ /dev/null
Binary files differ
diff --git a/subsonic-booter/src/main/resources/images/subsonic-32.png b/subsonic-booter/src/main/resources/images/subsonic-32.png
deleted file mode 100644
index b30ed059..00000000
--- a/subsonic-booter/src/main/resources/images/subsonic-32.png
+++ /dev/null
Binary files differ
diff --git a/subsonic-booter/src/main/resources/images/subsonic-512.png b/subsonic-booter/src/main/resources/images/subsonic-512.png
deleted file mode 100644
index 77f183e0..00000000
--- a/subsonic-booter/src/main/resources/images/subsonic-512.png
+++ /dev/null
Binary files differ
diff --git a/subsonic-booter/src/main/resources/images/subsonic-started-16.png b/subsonic-booter/src/main/resources/images/subsonic-started-16.png
deleted file mode 100644
index 8bfcd647..00000000
--- a/subsonic-booter/src/main/resources/images/subsonic-started-16.png
+++ /dev/null
Binary files differ
diff --git a/subsonic-booter/src/main/resources/images/subsonic-stopped-16.png b/subsonic-booter/src/main/resources/images/subsonic-stopped-16.png
deleted file mode 100644
index c2d637cc..00000000
--- a/subsonic-booter/src/main/resources/images/subsonic-stopped-16.png
+++ /dev/null
Binary files differ
diff --git a/subsonic-booter/src/main/resources/subsonic.keystore b/subsonic-booter/src/main/resources/subsonic.keystore
deleted file mode 100644
index 54e1589c..00000000
--- a/subsonic-booter/src/main/resources/subsonic.keystore
+++ /dev/null
Binary files differ