Author: gnodet
Date: Mon Jul 13 09:19:36 2015
New Revision: 1690603
URL: http://svn.apache.org/r1690603
Log:
Prepare for release
Modified:
aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/proxy/Collaborator.java
aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/proxy/SingleInterceptorCollaborator.java
Modified:
aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/proxy/Collaborator.java
URL:
http://svn.apache.org/viewvc/aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/proxy/Collaborator.java?rev=1690603&r1=1690602&r2=1690603&view=diff
==============================================================================
---
aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/proxy/Collaborator.java
(original)
+++
aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/proxy/Collaborator.java
Mon Jul 13 09:19:36 2015
@@ -85,14 +85,6 @@ public class Collaborator implements Inv
/**
* Called when the method is called and returned normally
- *
- * @param cm
- * : component metadata
- * @param method
- * : method
- * @param returnType
- * : return type
- * @throws Throwable
*/
public void postInvoke(Object token, Object o, Method method,
Object returnType) throws Throwable {
@@ -117,13 +109,6 @@ public class Collaborator implements Inv
/**
* Called when the method is called and returned with an exception
- *
- * @param cm
- * : component metadata
- * @param method
- * : method
- * @param exception
- * : exception thrown
*/
public void postInvokeExceptionalReturn(Object token, Object o, Method
method,
Throwable exception) throws Throwable {
Modified:
aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/proxy/SingleInterceptorCollaborator.java
URL:
http://svn.apache.org/viewvc/aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/proxy/SingleInterceptorCollaborator.java?rev=1690603&r1=1690602&r2=1690603&view=diff
==============================================================================
---
aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/proxy/SingleInterceptorCollaborator.java
(original)
+++
aries/trunk/blueprint/blueprint-core/src/main/java/org/apache/aries/blueprint/proxy/SingleInterceptorCollaborator.java
Mon Jul 13 09:19:36 2015
@@ -51,14 +51,6 @@ public class SingleInterceptorCollaborat
/**
* Invoke the preCall method on the interceptor
- *
- * @param o
- * : The Object being invoked
- * @param m
- * : method
- * @param parameters
- * : method paramters
- * @throws Throwable
*/
public Object preInvoke(Object o, Method m, Object[] parameters)
throws Throwable {
@@ -74,14 +66,6 @@ public class SingleInterceptorCollaborat
/**
* Called when the method is called and returned normally
- *
- * @param cm
- * : component metadata
- * @param method
- * : method
- * @param returnType
- * : return type
- * @throws Throwable
*/
public void postInvoke(Object token, Object o, Method method,
Object returnType) throws Throwable {
@@ -98,13 +82,6 @@ public class SingleInterceptorCollaborat
/**
* Called when the method is called and returned with an exception
- *
- * @param cm
- * : component metadata
- * @param method
- * : method
- * @param exception
- * : exception thrown
*/
public void postInvokeExceptionalReturn(Object token, Object o, Method
method,
Throwable exception) throws Throwable {