summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-11-20 08:29:00 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-11-20 08:29:00 +0000
commit98dceb1593305a85de799c6e3bb15edb4bd399b0 (patch)
tree8f13c50730f961681cbda9a33005d7d88d2df6d9
parenta3a1ba34bf830b25e1bd84206c00ff536d4a4a83 (diff)
Filter out some more cglib operations
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1037134 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java17
1 files changed, 11 insertions, 6 deletions
diff --git a/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java b/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java
index 8b74a4f7d6..d4e1fc55e4 100644
--- a/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java
+++ b/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java
@@ -39,12 +39,17 @@ public class ServiceOperationCompletor extends SimpleCompletor {
private Shell shell;
private static final List<String> EXCLUDED_OPS = Arrays.asList(new String[] {"equals", "getClass",
- "getInvocationHandler",
- "getProxyClass", "hashCode",
- "isProxyClass", "newProxyInstance",
- "notify", "notifyAll", "toString",
- "wait"});
-
+ "getInvocationHandler",
+ "getProxyClass", "hashCode",
+ "isProxyClass", "newProxyInstance",
+ "notify", "notifyAll", "toString",
+ "wait", "CGLIB$SET_STATIC_CALLBACKS",
+ "CGLIB$SET_THREAD_CALLBACKS",
+ "CGLIB$findMethodProxy",
+ "getCallback", "getCallbacks",
+ "newInstance", "setCallback",
+ "setCallbacks"});
+
public ServiceOperationCompletor(Shell shell) {
super("");
this.shell = shell;