public CertificatePolicies(PolicyInformation[] policyInformation)
 {
     this.policyInformation = policyInformation;
 }
 /**
  * Construct a CertificatePolicies object containing one PolicyInformation.
  *
  * @param name the name to be contained.
  */
 public CertificatePolicies(PolicyInformation name)
 {
     this.policyInformation = new PolicyInformation[] { name };
 }