Package org.apache.sentry.core

Examples of org.apache.sentry.core.Database


    Server server = (Server)Authorizables.from("SeRvEr=server1");
    assertEquals("server1", server.getName());
  }
  @Test
  public void testDb() throws Exception {
    Database db = (Database)Authorizables.from("dB=db1");
    assertEquals("db1", db.getName());
  }
View Full Code Here

TOP

Related Classes of org.apache.sentry.core.Database

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.