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

org.subethamail.smtp.Version Maven / Gradle / Ivy

Go to download

A fork of a fork (!) of SubEtha, an easy-to-use server-side SMTP library for Java.

There is a newer version: 7.1.3
Show newest version
/*
 * $Id$
 * $URL$
 */
package org.subethamail.smtp;

/**
 * Provides version information from the manifest.
 *
 * @author Jeff Schnitzer
 */
public final class Version {

    private Version () {
        //prevent instantiation
    }
    
    public static String getSpecification() {
        Package pkg = Version.class.getPackage();
        return (pkg == null) ? null : pkg.getSpecificationVersion();
    }

    public static String getImplementation() {
        Package pkg = Version.class.getPackage();
        return (pkg == null) ? null : pkg.getImplementationVersion();
    }

    /**
     * A simple main method that prints the version and exits
     */
    public static void main(String[] args) {
        System.out.println("Version: " + getSpecification());
        System.out.println("Implementation: " + getImplementation());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy