Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeConfluence
languagejava
titleCDAPAuthorizable
firstline1
/**
 * This interface represents an authorizable resource in the CDAP component.
 */
public interface CDAPAuthorizable extends Authorizable {

  public enum AuthorizableType {
	Instance,
    Namespace,
    Artifact,
    Application,
    Program,
    Dataset,
    Stream,
	Stream_View   };
  AuthorizableType getAuthzType();
}

...

 

Note: Will have to whitelist the cdap user for the Sentry Service.

...