diff options
author | Scott Jackson <daneren2005@gmail.com> | 2012-07-02 21:24:02 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2012-07-02 21:24:02 -0700 |
commit | a1a18f77a50804e0127dfa4b0f5240c49c541184 (patch) | |
tree | 19a38880afe505beddb5590379a8134d7730a277 /subsonic-booter/src/main/resources | |
parent | b61d787706979e7e20f4c3c4f93c1f129d92273f (diff) | |
download | dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.tar.gz dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.tar.bz2 dsub-a1a18f77a50804e0127dfa4b0f5240c49c541184.zip |
Initial Commit
Diffstat (limited to 'subsonic-booter/src/main/resources')
-rw-r--r-- | subsonic-booter/src/main/resources/META-INF/MANIFEST.MF | 2 | ||||
-rw-r--r-- | subsonic-booter/src/main/resources/applicationContext-agent.xml | 33 | ||||
-rw-r--r-- | subsonic-booter/src/main/resources/applicationContext-deployer.xml | 15 | ||||
-rw-r--r-- | subsonic-booter/src/main/resources/applicationContext-mac.xml | 18 | ||||
-rw-r--r-- | subsonic-booter/src/main/resources/images/subsonic-16.png | bin | 0 -> 734 bytes | |||
-rw-r--r-- | subsonic-booter/src/main/resources/images/subsonic-21.png | bin | 0 -> 673 bytes | |||
-rw-r--r-- | subsonic-booter/src/main/resources/images/subsonic-32.png | bin | 0 -> 1444 bytes | |||
-rw-r--r-- | subsonic-booter/src/main/resources/images/subsonic-512.png | bin | 0 -> 33807 bytes | |||
-rw-r--r-- | subsonic-booter/src/main/resources/images/subsonic-started-16.png | bin | 0 -> 810 bytes | |||
-rw-r--r-- | subsonic-booter/src/main/resources/images/subsonic-stopped-16.png | bin | 0 -> 771 bytes | |||
-rw-r--r-- | subsonic-booter/src/main/resources/subsonic.keystore | bin | 0 -> 1237 bytes |
11 files changed, 68 insertions, 0 deletions
diff --git a/subsonic-booter/src/main/resources/META-INF/MANIFEST.MF b/subsonic-booter/src/main/resources/META-INF/MANIFEST.MF new file mode 100644 index 00000000..708d0ddd --- /dev/null +++ b/subsonic-booter/src/main/resources/META-INF/MANIFEST.MF @@ -0,0 +1,2 @@ +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 new file mode 100644 index 00000000..f54bf9b2 --- /dev/null +++ b/subsonic-booter/src/main/resources/applicationContext-agent.xml @@ -0,0 +1,33 @@ +<?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 new file mode 100644 index 00000000..ac4e46de --- /dev/null +++ b/subsonic-booter/src/main/resources/applicationContext-deployer.xml @@ -0,0 +1,15 @@ +<?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 new file mode 100644 index 00000000..36d9a549 --- /dev/null +++ b/subsonic-booter/src/main/resources/applicationContext-mac.xml @@ -0,0 +1,18 @@ +<?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 Binary files differnew file mode 100644 index 00000000..eba8bb57 --- /dev/null +++ b/subsonic-booter/src/main/resources/images/subsonic-16.png diff --git a/subsonic-booter/src/main/resources/images/subsonic-21.png b/subsonic-booter/src/main/resources/images/subsonic-21.png Binary files differnew file mode 100644 index 00000000..6ce85a4f --- /dev/null +++ b/subsonic-booter/src/main/resources/images/subsonic-21.png diff --git a/subsonic-booter/src/main/resources/images/subsonic-32.png b/subsonic-booter/src/main/resources/images/subsonic-32.png Binary files differnew file mode 100644 index 00000000..b30ed059 --- /dev/null +++ b/subsonic-booter/src/main/resources/images/subsonic-32.png diff --git a/subsonic-booter/src/main/resources/images/subsonic-512.png b/subsonic-booter/src/main/resources/images/subsonic-512.png Binary files differnew file mode 100644 index 00000000..77f183e0 --- /dev/null +++ b/subsonic-booter/src/main/resources/images/subsonic-512.png diff --git a/subsonic-booter/src/main/resources/images/subsonic-started-16.png b/subsonic-booter/src/main/resources/images/subsonic-started-16.png Binary files differnew file mode 100644 index 00000000..8bfcd647 --- /dev/null +++ b/subsonic-booter/src/main/resources/images/subsonic-started-16.png diff --git a/subsonic-booter/src/main/resources/images/subsonic-stopped-16.png b/subsonic-booter/src/main/resources/images/subsonic-stopped-16.png Binary files differnew file mode 100644 index 00000000..c2d637cc --- /dev/null +++ b/subsonic-booter/src/main/resources/images/subsonic-stopped-16.png diff --git a/subsonic-booter/src/main/resources/subsonic.keystore b/subsonic-booter/src/main/resources/subsonic.keystore Binary files differnew file mode 100644 index 00000000..54e1589c --- /dev/null +++ b/subsonic-booter/src/main/resources/subsonic.keystore |