
com.oneandone.ejbcdiunit.internal.ApplicationExceptionDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ejb-cdi-unit Show documentation
Show all versions of ejb-cdi-unit Show documentation
A module that can be used together with cdiunit to build en ejb-test-environment.
The newest version!
package com.oneandone.ejbcdiunit.internal;
/**
* @author aschoerk
*/
public class ApplicationExceptionDescription {
private String className;
private boolean rollback = false;
private boolean inherited = true;
public String getClassName() {
return className;
}
public void setClassName(final String classNameP) {
this.className = classNameP;
}
public boolean isRollback() {
return rollback;
}
public void setRollback(final boolean rollbackP) {
this.rollback = rollbackP;
}
public boolean isInherited() {
return inherited;
}
public void setInherited(final boolean inheritedP) {
this.inherited = inheritedP;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy