Package grails.core.support.proxy
Interface EntityProxyHandler
-
- All Superinterfaces:
ProxyHandler
public interface EntityProxyHandler extends ProxyHandler
Methods specified to proxied entities- Since:
- 1.3.6
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<?>getProxiedClass(java.lang.Object o)Returns the proxied class without initializing the proxyjava.lang.ObjectgetProxyIdentifier(java.lang.Object o)This method returns the identifier of the proxy or null if the object is not a proxy-
Methods inherited from interface grails.core.support.proxy.ProxyHandler
initialize, isInitialized, isInitialized, isProxy, unwrapIfProxy
-
-
-
-
Method Detail
-
getProxyIdentifier
java.lang.Object getProxyIdentifier(java.lang.Object o)
This method returns the identifier of the proxy or null if the object is not a proxy- Returns:
- The identifier of the identity
-
getProxiedClass
java.lang.Class<?> getProxiedClass(java.lang.Object o)
Returns the proxied class without initializing the proxy- Parameters:
o- The object- Returns:
- The class
-
-