Example usage for org.bouncycastle.tsp GenTimeAccuracy GenTimeAccuracy

List of usage examples for org.bouncycastle.tsp GenTimeAccuracy GenTimeAccuracy

Introduction

In this page you can find the example usage for org.bouncycastle.tsp GenTimeAccuracy GenTimeAccuracy.

Prototype

public GenTimeAccuracy(Accuracy accuracy) 

Source Link

Usage

From source file:de.rub.dez6a3.jpdfsigner.TimeStampToken.java

License:Open Source License

public GenTimeAccuracy getGenTimeAccuracy() {
    if (this.getAccuracy() != null) {
        return new GenTimeAccuracy(this.getAccuracy());
    }/*from  w w w  .j av a  2  s .co  m*/

    return null;
}