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

java.security.Timestamp Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
package java.security;

import java.io.Serializable;
import java.security.cert.CertPath;
import java.util.Date;

public final class Timestamp implements Serializable {
	private Date timestamp;
	private CertPath signerCertPath;

	public Timestamp(Date timestamp, CertPath signerCertPath) {
		this.timestamp = new Date(timestamp.getTime());
		this.signerCertPath = signerCertPath;
	}

	public Date getTimestamp() {
		return new Date(timestamp.getTime());
	}

	public CertPath getSignerCertPath() {
		return signerCertPath;
	}

	public int hashCode() {
		return timestamp.hashCode() + signerCertPath.hashCode();
	}

	public boolean equals(Object obj) {
		if (obj == null || (!(obj instanceof Timestamp))) return false;
		Timestamp that = (Timestamp) obj;
		if (this == that) return true;
		return (timestamp.equals(that.getTimestamp()) && signerCertPath.equals(that.getSignerCertPath()));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy