View Javadoc

1   package com.atlassian.sal.core.trusted;
2   
3   import com.atlassian.security.auth.trustedapps.EncryptedCertificate;
4   
5   /**
6    * Interface for retrieving encrypted certificate for given username.
7    */
8   public interface CertificateFactory
9   {
10      EncryptedCertificate createCertificate(String username);
11  }