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

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

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

import java.net.URI;

public class PAdESReference {

    public static PAdESReference of(URI url) {
        return url == null ? null : new PAdESReference(url);
    }

    private final URI pAdESUrl;

    private PAdESReference(URI url) {
        this.pAdESUrl = url;
    }

    public URI getpAdESUrl() {
        return pAdESUrl;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy