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

no.digipost.signature.client.core.PollingQueue Maven / Gradle / Ivy

There is a newer version: 7.0.4
Show newest version
package no.digipost.signature.client.core;

import java.util.Objects;

public final class PollingQueue {

    public final static PollingQueue DEFAULT = new PollingQueue(null);

    public final String value;

    private PollingQueue(String value) {
        this.value = value;
    }

    public static PollingQueue of(String value) {
        return new PollingQueue(value);
    }

    @Override
    public boolean equals(Object obj) {
        if (obj instanceof PollingQueue) {
            PollingQueue that = (PollingQueue) obj;
            return Objects.equals(this.value, that.value);
        }
        return false;
    }

    @Override
    public int hashCode() {
        return Objects.hash(value);
    }

    @Override
    public String toString() {
        return value != null ? "polling-queue '" + value + "'" : "no specified polling-queue (default)";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy