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

acolyte.Savepoint Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package acolyte;

import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.EqualsBuilder;

/**
 * Acolyte savepoint.
 *
 * @author Cedric Chantepie
 */
public final class Savepoint implements java.sql.Savepoint {
    // --- Properties ---

    /**
     * Id
     */
    private final int id;

    /**
     * Name
     */
    private final String name;

    // --- Constructor ---

    /**
     * No-name constructor.
     */
    public Savepoint() {
        this.id = System.identityHashCode(this);
        this.name = null;
    } // end of 

    /**
     * Named savepoint constructor.
     *
     * @param name Savepoint name
     */
    public Savepoint(final String name) {
        if (name == null) {
            throw new IllegalArgumentException("Invalid name");
        } // end of if

        this.id = System.identityHashCode(this);
        this.name = name;
    } // end of 

    // --- Properties ---

    /**
     * {@inheritDoc}
     */
    public int getSavepointId() {
        return this.id;
    } // end of getSavepointId

    /**
     * {@inheritDoc}
     */
    public String getSavepointName() {
        return this.name;
    } // end of getSavepointName

    // --- Object support ---

    /**
     * {@inheritDoc}
     */
    public String toString() {
        return String.format("Savepoint(%s, %s)", this.id, this.name);
    } // end of toString

    /**
     * {@inheritDoc}
     */
    public int hashCode() {
        return new HashCodeBuilder(1, 3).
            append(this.id).append(this.name).
            toHashCode();

    } // end of hashCode

    /**
     * {@inheritDoc}
     */
    public boolean equals(Object o) {
        if (o == null || !(o instanceof Savepoint)) {
            return false;
        } // end of if

        final Savepoint other = (Savepoint) o;

        return new EqualsBuilder().
            append(this.id, other.id).
            append(this.name, other.name).
            isEquals();

    } // end of equals
} // end of class Savepoint




© 2015 - 2024 Weber Informatics LLC | Privacy Policy