All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.spinnaker.gate.security.x509.X509RolesExtractor Maven / Gradle / Ivy

The newest version!
package com.netflix.spinnaker.gate.security.x509;

import java.security.cert.X509Certificate;
import java.util.Collection;

public interface X509RolesExtractor {

  /**
   * Loads the roles assigned to the {@link com.netflix.spinnaker.security.User User}, extracted
   * from the X509 certificate.
   *
   * @param cert
   * @return Roles assigned to the {@link com.netflix.spinnaker.security.User User}
   */
  Collection fromCertificate(X509Certificate cert);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy