public interface

FieldFilter

org.hibernate.bytecode.javassist.FieldFilter

Class Overview

Contract for deciding whether fields should be read and/or write intercepted.

Summary

Public Methods
abstract boolean handleRead(String desc, String name)
Should the given field be read intercepted?
abstract boolean handleReadAccess(String fieldOwnerClassName, String fieldName)
abstract boolean handleWrite(String desc, String name)
Should the given field be write intercepted?
abstract boolean handleWriteAccess(String fieldOwnerClassName, String fieldName)

Public Methods

public abstract boolean handleRead (String desc, String name)

Should the given field be read intercepted?

Returns
  • true if the given field should be read intercepted; otherwise false.

public abstract boolean handleReadAccess (String fieldOwnerClassName, String fieldName)

public abstract boolean handleWrite (String desc, String name)

Should the given field be write intercepted?

Returns
  • true if the given field should be write intercepted; otherwise false.

public abstract boolean handleWriteAccess (String fieldOwnerClassName, String fieldName)