View Javadoc

1   package com.atlassian.security.auth.trustedapps;
2   
3   import java.util.Date;
4   
5   /**
6    * Represents the certificate received by the filter from a trusted client.
7    */
8   public interface ApplicationCertificate
9   {
10  	public Date getCreationTime();
11  	public String getUserName();
12  	public String getApplicationID();
13  }