コード例 #1
0
  /**
   * Constructs a AppleServerBasicImpl object.
   *
   * @param keystore The keystore to use (can be a File, an InputStream, a String for a file path,
   *     or a byte[] array)
   * @param password The keystore's password
   * @param type The keystore type (typically PKCS12)
   * @throws KeystoreException thrown if an error occurs when loading the keystore
   */
  public AppleServerBasicImpl(Object keystore, String password, String type)
      throws KeystoreException {
    KeystoreManager.validateKeystoreParameter(keystore);
    this.keystore = keystore;
    this.password = password;
    this.type = type;

    /* Make sure that the keystore reference is reusable. */
    this.keystore = KeystoreManager.ensureReusableKeystore(this, this.keystore);
  }
コード例 #2
0
 public InputStream getKeystoreStream() throws InvalidKeystoreReferenceException {
   return KeystoreManager.streamKeystore(keystore);
 }