Skip to content

Commit

Permalink
Merge branch 'THausherr-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed May 12, 2019
2 parents 2ebb9da + 15450be commit b4733f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pkix/src/main/j2me/org/bouncycastle/tsp/TimeStampToken.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,17 +148,17 @@ public AttributeTable getUnsignedAttributes()
return tsaSignerInfo.getUnsignedAttributes();
}

public Store getCertificates()
public Store<X509CertificateHolder> getCertificates()
{
return tsToken.getCertificates();
}

public Store getCRLs()
public Store<X509CRLHolder> getCRLs()
{
return tsToken.getCRLs();
}

public Store getAttributeCertificates()
public Store<X509AttributeCertificateHolder> getAttributeCertificates()
{
return tsToken.getAttributeCertificates();
}
Expand Down
6 changes: 3 additions & 3 deletions pkix/src/main/java/org/bouncycastle/tsp/TimeStampToken.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,17 +150,17 @@ public AttributeTable getUnsignedAttributes()
return tsaSignerInfo.getUnsignedAttributes();
}

public Store getCertificates()
public Store<X509CertificateHolder> getCertificates()
{
return tsToken.getCertificates();
}

public Store getCRLs()
public Store<X509CRLHolder> getCRLs()
{
return tsToken.getCRLs();
}

public Store getAttributeCertificates()
public Store<X509AttributeCertificateHolder> getAttributeCertificates()
{
return tsToken.getAttributeCertificates();
}
Expand Down

0 comments on commit b4733f4

Please sign in to comment.