Tabnine Logo
PrivilegeObject$Builder.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.apache.sentry.provider.db.generic.service.persistent.PrivilegeObject$Builder
constructor

Best Java code snippets using org.apache.sentry.provider.db.generic.service.persistent.PrivilegeObject$Builder.<init> (Showing top 20 results out of 315)

origin: apache/incubator-sentry

privileges.add(new Builder()
             .setComponent(mPrivilege.getComponentName())
             .setService(mPrivilege.getServiceName())
origin: apache/sentry

Set<PrivilegeObject> getPrivilegesByProvider(String component,
                       String service, Set<MSentryRole> roles,
                       List<? extends Authorizable> authorizables, PersistenceManager pm) {
 Set<PrivilegeObject> privileges = Sets.newHashSet();
 if (roles == null || roles.isEmpty()) {
  return privileges;
 }
 MSentryGMPrivilege parentPrivilege = new MSentryGMPrivilege(component, service, authorizables, null, null);
 Set<MSentryGMPrivilege> privilegeGraph = Sets.newHashSet();
 privilegeGraph.addAll(populateIncludePrivileges(roles, parentPrivilege, pm));
 for (MSentryGMPrivilege mPrivilege : privilegeGraph) {
  privileges.add(new Builder()
               .setComponent(mPrivilege.getComponentName())
               .setService(mPrivilege.getServiceName())
               .setAction(mPrivilege.getAction())
               .setAuthorizables(mPrivilege.getAuthorizables())
               .withGrantOption(mPrivilege.getGrantOption())
               .build());
 }
 return privileges;
}
origin: apache/incubator-sentry

public Set<PrivilegeObject> getPrivilegesByProvider(String component,
  String service, Set<MSentryRole> roles,
  List<? extends Authorizable> authorizables, PersistenceManager pm) {
 Set<PrivilegeObject> privileges = Sets.newHashSet();
 if (roles == null || roles.isEmpty()) {
  return privileges;
 }
 MSentryGMPrivilege parentPrivilege = new MSentryGMPrivilege(component, service, authorizables, null, null);
 Set<MSentryGMPrivilege> privilegeGraph = Sets.newHashSet();
 privilegeGraph.addAll(populateIncludePrivileges(roles, parentPrivilege, pm));
 for (MSentryGMPrivilege mPrivilege : privilegeGraph) {
  privileges.add(new Builder()
               .setComponent(mPrivilege.getComponentName())
               .setService(mPrivilege.getServiceName())
               .setAction(mPrivilege.getAction())
               .setAuthorizables(mPrivilege.getAuthorizables())
               .withGrantOption(mPrivilege.getGrantOption())
               .build());
 }
 return privileges;
}
origin: apache/sentry

PrivilegeObject queryPrivilege = new Builder()
  .setComponent(SEARCH)
  .setAction(SolrConstants.QUERY)
origin: apache/sentry

PrivilegeObject allPrivilege = new Builder()
  .setComponent(SEARCH)
  .setAction(SolrConstants.ALL)
  sentryStore.getPrivilegesByRole(SEARCH, Sets.newHashSet(roleName)));
PrivilegeObject queryPrivilege = new Builder(allPrivilege)
  .setAction(SolrConstants.QUERY)
  .build();
origin: apache/incubator-sentry

PrivilegeObject queryPrivilege = new Builder()
 .setComponent(component)
 .setAction(SearchConstants.QUERY)
       sentryStore.getPrivilegesByRole(component, Sets.newHashSet(roleName)));
PrivilegeObject queryPrivilegeWithOption = new Builder()
 .setComponent(component)
 .setAction(SearchConstants.QUERY)
       sentryStore.getPrivilegesByRole(component, Sets.newHashSet(roleName)));
PrivilegeObject queryPrivilegeWithNoOption = new Builder()
 .setComponent(component)
 .setAction(SearchConstants.QUERY)
origin: apache/sentry

PrivilegeObject queryPrivilege = new Builder()
 .setComponent(component)
 .setAction(SolrConstants.QUERY)
       sentryStore.getPrivilegesByRole(component, Sets.newHashSet(roleName)));
PrivilegeObject queryPrivilegeWithOption = new Builder()
 .setComponent(component)
 .setAction(SolrConstants.QUERY)
       sentryStore.getPrivilegesByRole(component, Sets.newHashSet(roleName)));
PrivilegeObject queryPrivilegeWithNoOption = new Builder()
 .setComponent(component)
 .setAction(SolrConstants.QUERY)
origin: apache/sentry

PrivilegeObject queryPrivilege = new Builder()
  .setComponent(SEARCH)
  .setAction(SolrConstants.QUERY)
  .build();
PrivilegeObject updatePrivilege = new Builder(queryPrivilege)
  .setAction(SolrConstants.UPDATE)
  .build();
PrivilegeObject allPrivilege = new Builder(queryPrivilege)
  .setAction(SolrConstants.ALL)
  .build();
origin: apache/incubator-sentry

PrivilegeObject queryPrivilege = new Builder()
  .setComponent(SEARCH)
  .setAction(SearchConstants.QUERY)
  .build();
PrivilegeObject updatePrivilege = new Builder(queryPrivilege)
  .setAction(SearchConstants.UPDATE)
  .build();
PrivilegeObject allPrivilege = new Builder(queryPrivilege)
  .setAction(SearchConstants.ALL)
  .build();
origin: apache/sentry

privileges.add(new Builder()
             .setComponent(mPrivilege.getComponentName())
             .setService(mPrivilege.getServiceName())
origin: apache/sentry

PrivilegeObject allPrivilege = new Builder()
  .setComponent(SEARCH)
  .setAction(SolrConstants.ALL)
PrivilegeObject updatePrivilege = new Builder(allPrivilege)
  .setAction(SolrConstants.UPDATE)
  .build();
PrivilegeObject queryPrivilege = new Builder(allPrivilege)
  .setAction(SolrConstants.QUERY)
  .build();
origin: apache/incubator-sentry

PrivilegeObject allPrivilege = new Builder()
  .setComponent(SEARCH)
  .setAction(SearchConstants.ALL)
PrivilegeObject updatePrivilege = new Builder(allPrivilege)
  .setAction(SearchConstants.UPDATE)
  .build();
PrivilegeObject queryPrivilege = new Builder(allPrivilege)
  .setAction(SearchConstants.QUERY)
  .build();
origin: apache/sentry

@Test
public void testGrantWithGrantOption() throws Exception {
 addGroupsToUser(GRANT_OPTION_USER, GRANT_OPTION_GROUP);
 addGroupsToUser(NO_GRANT_OPTION_USER, NO_GRANT_OPTION_GROUP);
 writePolicyFile();
 String roleName1 = "r1";
 String grantor = "g1";
 sentryStore.createRole(SEARCH, roleName1, grantor);
 /**
  * grant query privilege to role r1 with grant option
  */
 PrivilegeObject queryPrivilege = new Builder()
   .setComponent(SEARCH)
   .setAction(SolrConstants.QUERY)
   .setService(SERVICE)
   .setAuthorizables(Arrays.asList(new Collection(COLLECTION_NAME)))
   .withGrantOption(true)
   .build();
 sentryStore.alterRoleGrantPrivilege(SEARCH, roleName1, queryPrivilege,ADMIN_USER);
 sentryStore.alterRoleAddGroups(SEARCH, roleName1,
   Sets.newHashSet(GRANT_OPTION_GROUP), grantor);
 /**
  * the user with grant option grant query privilege to rolr r2
  */
 String roleName2 = "r2";
 sentryStore.createRole(SEARCH, roleName2, grantor);
 sentryStore.alterRoleGrantPrivilege(SEARCH, roleName2, queryPrivilege, GRANT_OPTION_USER);
 assertEquals(Sets.newHashSet(queryPrivilege),
   sentryStore.getPrivilegesByRole(SEARCH, Sets.newHashSet(roleName2)));
}
origin: apache/incubator-sentry

PrivilegeObject queryPrivilege = new Builder()
  .setComponent(SEARCH)
  .setAction(SearchConstants.QUERY)
  .build();
PrivilegeObject updatePrivilege = new Builder(queryPrivilege)
  .setAction(SearchConstants.UPDATE)
  .build();
origin: apache/sentry

PrivilegeObject queryPrivilege = new Builder()
  .setComponent(SEARCH)
  .setAction(SolrConstants.QUERY)
  .build();
PrivilegeObject updatePrivilege = new Builder(queryPrivilege)
  .setAction(SolrConstants.UPDATE)
  .build();
origin: apache/incubator-sentry

@Test
public void testGrantWithGrantOption() throws Exception {
 addGroupsToUser(GRANT_OPTION_USER, GRANT_OPTION_GROUP);
 addGroupsToUser(NO_GRANT_OPTION_USER, NO_GRANT_OPTION_GROUP);
 writePolicyFile();
 String roleName1 = "r1";
 String grantor = "g1";
 sentryStore.createRole(SEARCH, roleName1, grantor);
 /**
  * grant query privilege to role r1 with grant option
  */
 PrivilegeObject queryPrivilege = new Builder()
   .setComponent(SEARCH)
   .setAction(SearchConstants.QUERY)
   .setService(SERVICE)
   .setAuthorizables(Arrays.asList(new Collection(COLLECTION_NAME)))
   .withGrantOption(true)
   .build();
 sentryStore.alterRoleGrantPrivilege(SEARCH, roleName1, queryPrivilege,ADMIN_USER);
 sentryStore.alterRoleAddGroups(SEARCH, roleName1,
   Sets.newHashSet(GRANT_OPTION_GROUP), grantor);
 /**
  * the user with grant option grant query privilege to rolr r2
  */
 String roleName2 = "r2";
 sentryStore.createRole(SEARCH, roleName2, grantor);
 sentryStore.alterRoleGrantPrivilege(SEARCH, roleName2, queryPrivilege, GRANT_OPTION_USER);
 assertEquals(Sets.newHashSet(queryPrivilege),
   sentryStore.getPrivilegesByRole(SEARCH, Sets.newHashSet(roleName2)));
}
origin: apache/incubator-sentry

@Test
public void testGetPrivilegesByRoleName() throws Exception {
 String roleName1 = "r1";
 String roleName2 = "r2";
 String grantor = "g1";
 PrivilegeObject queryPrivilege = new Builder()
   .setComponent(SEARCH)
   .setAction(SearchConstants.QUERY)
   .setService(SERVICE)
   .setAuthorizables(Arrays.asList(new Collection(COLLECTION_NAME)))
   .build();
 sentryStore.createRole(SEARCH, roleName1, grantor);
 sentryStore.alterRoleGrantPrivilege(SEARCH, roleName1, queryPrivilege,
   ADMIN_USER);
 PrivilegeObject updatePrivilege = new Builder()
   .setComponent(SEARCH)
   .setAction(SearchConstants.QUERY)
   .setService(SERVICE)
   .setAuthorizables(Arrays.asList(new Collection(COLLECTION_NAME)))
   .build();
 sentryStore.createRole(SEARCH, roleName2, grantor);
 sentryStore.alterRoleGrantPrivilege(SEARCH, roleName2, updatePrivilege,
   ADMIN_USER);
 assertEquals(Sets.newHashSet(queryPrivilege,updatePrivilege),
   sentryStore.getPrivilegesByRole(SEARCH, Sets.newHashSet(roleName1,roleName2)));
}
origin: apache/sentry

@Test
public void testGetPrivilegesByRoleName() throws Exception {
 String roleName1 = "r1";
 String roleName2 = "r2";
 String grantor = "g1";
 PrivilegeObject queryPrivilege = new Builder()
   .setComponent(SEARCH)
   .setAction(SolrConstants.QUERY)
   .setService(SERVICE)
   .setAuthorizables(Arrays.asList(new Collection(COLLECTION_NAME)))
   .build();
 sentryStore.createRole(SEARCH, roleName1, grantor);
 sentryStore.alterRoleGrantPrivilege(SEARCH, roleName1, queryPrivilege,
   ADMIN_USER);
 PrivilegeObject updatePrivilege = new Builder()
   .setComponent(SEARCH)
   .setAction(SolrConstants.QUERY)
   .setService(SERVICE)
   .setAuthorizables(Arrays.asList(new Collection(COLLECTION_NAME)))
   .build();
 sentryStore.createRole(SEARCH, roleName2, grantor);
 sentryStore.alterRoleGrantPrivilege(SEARCH, roleName2, updatePrivilege,
   ADMIN_USER);
 assertEquals(Sets.newHashSet(queryPrivilege,updatePrivilege),
   sentryStore.getPrivilegesByRole(SEARCH, Sets.newHashSet(roleName1,roleName2)));
}
origin: apache/incubator-sentry

private PrivilegeObject toPrivilegeObject(TSentryPrivilege tSentryPrivilege) {
 Boolean grantOption;
 if (tSentryPrivilege.getGrantOption().equals(TSentryGrantOption.TRUE)) {
  grantOption = true;
 } else if (tSentryPrivilege.getGrantOption().equals(TSentryGrantOption.FALSE)) {
  grantOption = false;
 } else {
  grantOption = null;
 }
 return new Builder().setComponent(tSentryPrivilege.getComponent())
                      .setService(tSentryPrivilege.getServiceName())
                      .setAuthorizables(toAuthorizables(tSentryPrivilege.getAuthorizables()))
                      .setAction(tSentryPrivilege.getAction())
                      .withGrantOption(grantOption)
                      .build();
}
origin: apache/sentry

private PrivilegeObject toPrivilegeObject(TSentryPrivilege tSentryPrivilege) {
 Boolean grantOption;
 if (tSentryPrivilege.getGrantOption().equals(TSentryGrantOption.TRUE)) {
  grantOption = true;
 } else if (tSentryPrivilege.getGrantOption().equals(TSentryGrantOption.FALSE)) {
  grantOption = false;
 } else {
  grantOption = null;
 }
 return new Builder().setComponent(tSentryPrivilege.getComponent())
                      .setService(tSentryPrivilege.getServiceName())
                      .setAuthorizables(toAuthorizables(tSentryPrivilege.getAuthorizables()))
                      .setAction(tSentryPrivilege.getAction())
                      .withGrantOption(grantOption)
                      .build();
}
org.apache.sentry.provider.db.generic.service.persistentPrivilegeObject$Builder<init>

Popular methods of PrivilegeObject$Builder

  • build
  • setAction
  • setAuthorizables
  • setComponent
  • setService
  • withGrantOption
  • toLowerAuthorizableName
    TolowerCase the authorizable name, the authorizable type is define when it was created. Take the Sol

Popular in Java

  • Creating JSON documents from java classes using gson
  • setRequestProperty (URLConnection)
  • onRequestPermissionsResult (Fragment)
  • getResourceAsStream (ClassLoader)
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now