summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;