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

org.jboss.as.ee.concurrent.handle.NullContextHandle Maven / Gradle / Ivy

package org.jboss.as.ee.concurrent.handle;

import java.io.ObjectStreamException;

/**
 * A context handle without invocation context to set.
 * @author Eduardo Martins
 */
public class NullContextHandle implements SetupContextHandle, ResetContextHandle {

    public static final NullContextHandle INSTANCE = new NullContextHandle();

    private NullContextHandle() {

    }

    @Override
    public ResetContextHandle setup() throws IllegalStateException {
        return this;
    }

    @Override
    public void reset() {

    }

    @Override
    public String getFactoryName() {
        return "NULL";
    }

    protected Object readResolve() throws ObjectStreamException {
        return INSTANCE;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy