- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {ArrayList a =
new ArrayList<String>()
new ArrayList()
new ArrayList<Object>()
- Smart code suggestions by Codota
}
/** * This method returns the organizationUnit attribute for a given certificate * * @param certificateId * the certificate id * @return the organizationUnit if available or null */ public String getCertificateOrganizationUnit(String certificateId) { XmlChainItem cert = getCertificate(certificateId); if (cert != null) { return cert.getSubject().getOrganizationUnit(); } return null; }