You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by no...@apache.org on 2010/10/26 15:10:59 UTC

svn commit: r1027535 - in /incubator/aries/trunk/proxy: ./ proxy-api/ proxy-api/src/main/java/org/apache/aries/proxy/ proxy-bundle/ proxy-impl/

Author: not
Date: Tue Oct 26 13:10:58 2010
New Revision: 1027535

URL: http://svn.apache.org/viewvc?rev=1027535&view=rev
Log:
ARIES-468 Add to svn:ignore and add in the ASL licenses I forgot to add. Oops. I wonder if anyone noticed yet?

Modified:
    incubator/aries/trunk/proxy/   (props changed)
    incubator/aries/trunk/proxy/proxy-api/   (props changed)
    incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/InvocationHandlerWrapper.java
    incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyFactory.java
    incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyManager.java
    incubator/aries/trunk/proxy/proxy-bundle/   (props changed)
    incubator/aries/trunk/proxy/proxy-impl/   (props changed)

Propchange: incubator/aries/trunk/proxy/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Oct 26 13:10:58 2010
@@ -0,0 +1,4 @@
+.settings
+target
+.classpath
+.project

Propchange: incubator/aries/trunk/proxy/proxy-api/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Oct 26 13:10:58 2010
@@ -0,0 +1,4 @@
+.settings
+target
+.classpath
+.project

Modified: incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/InvocationHandlerWrapper.java
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/InvocationHandlerWrapper.java?rev=1027535&r1=1027534&r2=1027535&view=diff
==============================================================================
--- incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/InvocationHandlerWrapper.java (original)
+++ incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/InvocationHandlerWrapper.java Tue Oct 26 13:10:58 2010
@@ -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.aries.proxy;
 
 import java.lang.reflect.InvocationHandler;

Modified: incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyFactory.java
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyFactory.java?rev=1027535&r1=1027534&r2=1027535&view=diff
==============================================================================
--- incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyFactory.java (original)
+++ incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyFactory.java Tue Oct 26 13:10:58 2010
@@ -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.aries.proxy;
 
 import java.util.concurrent.Callable;
@@ -6,7 +24,7 @@ import org.osgi.framework.Bundle;
 
 public interface ProxyFactory 
 {
-  public Object createProxy(Bundle clientBundle, Class[] classes, Callable<Object> dispatcher);
-  public Object createProxy(Bundle clientBundle, Class[] classes, Callable<Object> dispatcher, InvocationHandlerWrapper wrapper);
+  public Object createProxy(Bundle clientBundle, Class<?>[] classes, Callable<Object> dispatcher);
+  public Object createProxy(Bundle clientBundle, Class<?>[] classes, Callable<Object> dispatcher, InvocationHandlerWrapper wrapper);
   public boolean isProxy(Object proxy);
 }
\ No newline at end of file

Modified: incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyManager.java
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyManager.java?rev=1027535&r1=1027534&r2=1027535&view=diff
==============================================================================
--- incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyManager.java (original)
+++ incubator/aries/trunk/proxy/proxy-api/src/main/java/org/apache/aries/proxy/ProxyManager.java Tue Oct 26 13:10:58 2010
@@ -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.aries.proxy;
 
 public interface ProxyManager 

Propchange: incubator/aries/trunk/proxy/proxy-bundle/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Oct 26 13:10:58 2010
@@ -0,0 +1,4 @@
+.settings
+target
+.classpath
+.project

Propchange: incubator/aries/trunk/proxy/proxy-impl/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Oct 26 13:10:58 2010
@@ -0,0 +1,4 @@
+.settings
+target
+.classpath
+.project