All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oneandone.ejbcdiunit.internal.ApplicationExceptionDescription Maven / Gradle / Ivy

Go to download

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