You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ma...@apache.org on 2009/06/27 21:02:41 UTC

svn commit: r789008 [2/2] - in /incubator/ace/trunk/gateway/src: net/luminis/liq/bootstrap/multigateway/ net/luminis/liq/configurator/ net/luminis/liq/deployment/ net/luminis/liq/deployment/deploymentadmin/ net/luminis/liq/deployment/task/ net/luminis/...

Modified: incubator/ace/trunk/gateway/src/org/apache/ace/ma/webstart/SystemPropertyDiscovery.java
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/gateway/src/org/apache/ace/ma/webstart/SystemPropertyDiscovery.java?rev=789008&r1=788992&r2=789008&view=diff
==============================================================================
--- incubator/ace/trunk/gateway/src/org/apache/ace/ma/webstart/SystemPropertyDiscovery.java (original)
+++ incubator/ace/trunk/gateway/src/org/apache/ace/ma/webstart/SystemPropertyDiscovery.java Sat Jun 27 19:02:38 2009
@@ -1,10 +1,28 @@
-package net.luminis.liq.ma.webstart;
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.ace.ma.webstart;
 
 import java.net.MalformedURLException;
 import java.net.URL;
 import java.util.NoSuchElementException;
 
-import net.luminis.liq.discovery.Discovery;
+import org.apache.ace.discovery.Discovery;
 
 public class SystemPropertyDiscovery implements Discovery {
     private URL m_discovery;
@@ -24,5 +42,4 @@
     public URL discover() {
         return m_discovery;
     }
-
 }

Modified: incubator/ace/trunk/gateway/src/org/apache/ace/ma/webstart/SystemPropertyIdentification.java
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/gateway/src/org/apache/ace/ma/webstart/SystemPropertyIdentification.java?rev=789008&r1=788992&r2=789008&view=diff
==============================================================================
--- incubator/ace/trunk/gateway/src/org/apache/ace/ma/webstart/SystemPropertyIdentification.java (original)
+++ incubator/ace/trunk/gateway/src/org/apache/ace/ma/webstart/SystemPropertyIdentification.java Sat Jun 27 19:02:38 2009
@@ -1,8 +1,26 @@
-package net.luminis.liq.ma.webstart;
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.ace.ma.webstart;
 
 import java.util.NoSuchElementException;
 
-import net.luminis.liq.identification.Identification;
+import org.apache.ace.identification.Identification;
 
 public class SystemPropertyIdentification implements Identification {
     private String m_identification;

Modified: incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Activator.java
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Activator.java?rev=789008&r1=788992&r2=789008&view=diff
==============================================================================
--- incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Activator.java (original)
+++ incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Activator.java Sat Jun 27 19:02:38 2009
@@ -1,9 +1,26 @@
-package net.luminis.liq.scheduler;
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.ace.scheduler;
 
 import java.util.Properties;
 
-import net.luminis.liq.scheduler.constants.SchedulerConstants;
-
+import org.apache.ace.scheduler.constants.SchedulerConstants;
 import org.apache.felix.dependencymanager.DependencyActivatorBase;
 import org.apache.felix.dependencymanager.DependencyManager;
 import org.osgi.framework.BundleContext;
@@ -62,5 +79,4 @@
             m_scheduler.removeRunnable(name);
         }
     }
-
 }
\ No newline at end of file

Modified: incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Executer.java
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Executer.java?rev=789008&r1=788992&r2=789008&view=diff
==============================================================================
--- incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Executer.java (original)
+++ incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Executer.java Sat Jun 27 19:02:38 2009
@@ -1,4 +1,22 @@
-package net.luminis.liq.scheduler;
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.ace.scheduler;
 
 import java.util.Timer;
 import java.util.TimerTask;

Modified: incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Scheduler.java
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Scheduler.java?rev=789008&r1=788992&r2=789008&view=diff
==============================================================================
--- incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Scheduler.java (original)
+++ incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/Scheduler.java Sat Jun 27 19:02:38 2009
@@ -1,4 +1,22 @@
-package net.luminis.liq.scheduler;
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.ace.scheduler;
 
 import java.util.Dictionary;
 import java.util.Enumeration;

Modified: incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/SchedulerTask.java
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/SchedulerTask.java?rev=789008&r1=788992&r2=789008&view=diff
==============================================================================
--- incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/SchedulerTask.java (original)
+++ incubator/ace/trunk/gateway/src/org/apache/ace/scheduler/SchedulerTask.java Sat Jun 27 19:02:38 2009
@@ -1,4 +1,22 @@
-package net.luminis.liq.scheduler;
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.ace.scheduler;
 
 import org.osgi.service.cm.ConfigurationException;
 
@@ -27,7 +45,6 @@
         m_name = name;
     }
 
-
     public String getName() {
         return m_name;
     }
@@ -162,5 +179,4 @@
             }
         }
     }
-
 }