Package org.hibernate.test.instrument.cases

Source Code of org.hibernate.test.instrument.cases.TestInjectFieldInterceptorExecutable

package org.hibernate.test.instrument.cases;

import org.hibernate.test.instrument.domain.Document;
import org.hibernate.intercept.FieldInterceptionHelper;

import java.util.HashSet;

/**
* @author Steve Ebersole
*/
public class TestInjectFieldInterceptorExecutable extends AbstractExecutable {
  public void execute() {
    Document doc = new Document();
    FieldInterceptionHelper.injectFieldInterceptor( doc, "Document", new HashSet(), null );
    doc.getId();
  }
}
TOP

Related Classes of org.hibernate.test.instrument.cases.TestInjectFieldInterceptorExecutable

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.