List of usage examples for org.hibernate.proxy.pojo.javassist SerializableProxy SerializableProxy
@Deprecated
public SerializableProxy(String entityName, Class persistentClass, Class[] interfaces, Serializable id,
Boolean readOnly, Method getIdentifierMethod, Method setIdentifierMethod,
CompositeType componentIdType)
From source file:org.codehaus.groovy.grails.orm.hibernate.proxy.GroovyAwareJavassistLazyInitializer.java
License:Apache License
@Override protected Object serializableProxy() { return new SerializableProxy(getEntityName(), persistentClass, interfaces, getIdentifier(), false, getIdentifierMethod, setIdentifierMethod, componentIdType); }