FileDocCategorySizeDatePackage
ExceptionCheckingEntity.javaAPI DocHibernate 3.2.5599Fri Aug 04 12:40:56 BST 2006org.hibernate.test.sql.check

ExceptionCheckingEntity

public class ExceptionCheckingEntity extends Object
An entity which is expected to be mapped to each database using stored procedures which throw exceptions on their own; in other words, using {@link org.hibernate.engine.ExecuteUpdateResultCheckStyle#NONE}.
author
Steve Ebersole

Fields Summary
private Long
id
private String
name
Constructors Summary
Methods Summary
public java.lang.LonggetId()

		return id;
	
public java.lang.StringgetName()

		return name;
	
public voidsetId(java.lang.Long id)

		this.id = id;
	
public voidsetName(java.lang.String name)

		this.name = name;