Package jadex.bridge.service.search
Class ProxyFilter
- java.lang.Object
 - 
- jadex.bridge.service.search.ProxyFilter
 
 
- 
- All Implemented Interfaces:
 IAsyncFilter
public class ProxyFilter extends java.lang.Object implements IAsyncFilter
Test if a class is a proxy. 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from interface jadex.commons.IAsyncFilter
IAsyncFilter.AlwaysFilter<E>, IAsyncFilter.NeverFilter<E> 
 - 
 
- 
Field Summary
Fields Modifier and Type Field Description static IAsyncFilterPROXYFILTERStatic proxy filter instance.- 
Fields inherited from interface jadex.commons.IAsyncFilter
ALWAYS, NEVER 
 - 
 
- 
Constructor Summary
Constructors Constructor Description ProxyFilter() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Test if an object is equal to this.IFuture<java.lang.Boolean>filter(java.lang.Object obj)Test if service is a remote proxy.inthashCode()Get the hashcode. 
 - 
 
- 
- 
Field Detail
- 
PROXYFILTER
public static final IAsyncFilter PROXYFILTER
Static proxy filter instance. 
 - 
 
- 
Method Detail
- 
filter
public IFuture<java.lang.Boolean> filter(java.lang.Object obj)
Test if service is a remote proxy.- Specified by:
 filterin interfaceIAsyncFilter- Returns:
 - True, if passes the filter.
 
 
- 
hashCode
public int hashCode()
Get the hashcode.- Overrides:
 hashCodein classjava.lang.Object
 
- 
equals
public boolean equals(java.lang.Object obj)
Test if an object is equal to this.- Overrides:
 equalsin classjava.lang.Object
 
 - 
 
 -