You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by th...@apache.org on 2012/02/06 16:49:08 UTC

svn commit: r1241051 - in /river/jtsk/skunk/easystart: scala-src/org/apache/river/scala/ src-extra/org/apache/river/extra/easystart/ src-extra/org/apache/river/extra/easystart/discovery/ test/src/org/apache/river/extra/easystart/

Author: thobbs
Date: Mon Feb  6 15:49:07 2012
New Revision: 1241051

URL: http://svn.apache.org/viewvc?rev=1241051&view=rev
Log:
Added missing ASF header

Modified:
    river/jtsk/skunk/easystart/scala-src/org/apache/river/scala/Djinn.scala
    river/jtsk/skunk/easystart/scala-src/org/apache/river/scala/RemoteExecution.scala
    river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/GroupEncapsulator.java
    river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/AbstractDiscovery.java
    river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/DiscoveryException.java
    river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/EasyDiscovery.java
    river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/MulticastDiscovery.java
    river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/UnicastDiscovery.java
    river/jtsk/skunk/easystart/test/src/org/apache/river/extra/easystart/GroupEncapsulatorTest.java

Modified: river/jtsk/skunk/easystart/scala-src/org/apache/river/scala/Djinn.scala
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/easystart/scala-src/org/apache/river/scala/Djinn.scala?rev=1241051&r1=1241050&r2=1241051&view=diff
==============================================================================
--- river/jtsk/skunk/easystart/scala-src/org/apache/river/scala/Djinn.scala (original)
+++ river/jtsk/skunk/easystart/scala-src/org/apache/river/scala/Djinn.scala Mon Feb  6 15:49:07 2012
@@ -1,4 +1,23 @@
+/*
+ * 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.river.scala
+
 import net.jini.lookup.ServiceDiscoveryManager
 import java.util.ArrayList
 import java.util.Iterator

Modified: river/jtsk/skunk/easystart/scala-src/org/apache/river/scala/RemoteExecution.scala
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/easystart/scala-src/org/apache/river/scala/RemoteExecution.scala?rev=1241051&r1=1241050&r2=1241051&view=diff
==============================================================================
--- river/jtsk/skunk/easystart/scala-src/org/apache/river/scala/RemoteExecution.scala (original)
+++ river/jtsk/skunk/easystart/scala-src/org/apache/river/scala/RemoteExecution.scala Mon Feb  6 15:49:07 2012
@@ -1,3 +1,21 @@
+/*
+ * 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.river.scala
 
 sealed abstract class RemoteExecution[+A] {

Modified: river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/GroupEncapsulator.java
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/GroupEncapsulator.java?rev=1241051&r1=1241050&r2=1241051&view=diff
==============================================================================
--- river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/GroupEncapsulator.java (original)
+++ river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/GroupEncapsulator.java Mon Feb  6 15:49:07 2012
@@ -1,3 +1,21 @@
+/*
+ * 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.river.extra.easystart;
 
 import java.util.LinkedList;

Modified: river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/AbstractDiscovery.java
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/AbstractDiscovery.java?rev=1241051&r1=1241050&r2=1241051&view=diff
==============================================================================
--- river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/AbstractDiscovery.java (original)
+++ river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/AbstractDiscovery.java Mon Feb  6 15:49:07 2012
@@ -1,3 +1,21 @@
+/*
+ * 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.river.extra.easystart.discovery;
 
 import java.io.IOException;

Modified: river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/DiscoveryException.java
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/DiscoveryException.java?rev=1241051&r1=1241050&r2=1241051&view=diff
==============================================================================
--- river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/DiscoveryException.java (original)
+++ river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/DiscoveryException.java Mon Feb  6 15:49:07 2012
@@ -1,3 +1,21 @@
+/*
+ * 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.river.extra.easystart.discovery;
 
 import java.rmi.RemoteException;

Modified: river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/EasyDiscovery.java
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/EasyDiscovery.java?rev=1241051&r1=1241050&r2=1241051&view=diff
==============================================================================
--- river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/EasyDiscovery.java (original)
+++ river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/EasyDiscovery.java Mon Feb  6 15:49:07 2012
@@ -1,3 +1,21 @@
+/*
+ * 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.river.extra.easystart.discovery;
 
 import java.rmi.RemoteException;

Modified: river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/MulticastDiscovery.java
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/MulticastDiscovery.java?rev=1241051&r1=1241050&r2=1241051&view=diff
==============================================================================
--- river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/MulticastDiscovery.java (original)
+++ river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/MulticastDiscovery.java Mon Feb  6 15:49:07 2012
@@ -1,3 +1,21 @@
+/*
+ * 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.river.extra.easystart.discovery;
 
 import java.io.IOException;

Modified: river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/UnicastDiscovery.java
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/UnicastDiscovery.java?rev=1241051&r1=1241050&r2=1241051&view=diff
==============================================================================
--- river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/UnicastDiscovery.java (original)
+++ river/jtsk/skunk/easystart/src-extra/org/apache/river/extra/easystart/discovery/UnicastDiscovery.java Mon Feb  6 15:49:07 2012
@@ -1,3 +1,21 @@
+/*
+ * 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.river.extra.easystart.discovery;
 
 import java.io.IOException;

Modified: river/jtsk/skunk/easystart/test/src/org/apache/river/extra/easystart/GroupEncapsulatorTest.java
URL: http://svn.apache.org/viewvc/river/jtsk/skunk/easystart/test/src/org/apache/river/extra/easystart/GroupEncapsulatorTest.java?rev=1241051&r1=1241050&r2=1241051&view=diff
==============================================================================
--- river/jtsk/skunk/easystart/test/src/org/apache/river/extra/easystart/GroupEncapsulatorTest.java (original)
+++ river/jtsk/skunk/easystart/test/src/org/apache/river/extra/easystart/GroupEncapsulatorTest.java Mon Feb  6 15:49:07 2012
@@ -1,3 +1,21 @@
+/*
+ * 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.river.extra.easystart;
 
 import junit.framework.TestCase;