当前位置: 首页>>代码示例>>Java>>正文


Java UserPrincipalLookupService类代码示例

本文整理汇总了Java中java.nio.file.attribute.UserPrincipalLookupService的典型用法代码示例。如果您正苦于以下问题:Java UserPrincipalLookupService类的具体用法?Java UserPrincipalLookupService怎么用?Java UserPrincipalLookupService使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


UserPrincipalLookupService类属于java.nio.file.attribute包,在下文中一共展示了UserPrincipalLookupService类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testUserLookupService

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
@Test
public void testUserLookupService() throws IOException {
  UserPrincipalLookupService service = new UserLookupService(true);
  UserPrincipal bob1 = service.lookupPrincipalByName("bob");
  UserPrincipal bob2 = service.lookupPrincipalByName("bob");
  UserPrincipal alice = service.lookupPrincipalByName("alice");

  assertThat(bob1).isEqualTo(bob2);
  assertThat(bob1).isNotEqualTo(alice);

  GroupPrincipal group1 = service.lookupPrincipalByGroupName("group");
  GroupPrincipal group2 = service.lookupPrincipalByGroupName("group");
  GroupPrincipal foo = service.lookupPrincipalByGroupName("foo");

  assertThat(group1).isEqualTo(group2);
  assertThat(group1).isNotEqualTo(foo);
}
 
开发者ID:google,项目名称:jimfs,代码行数:18,代码来源:UserLookupServiceTest.java

示例2: addRestorePermissions

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
/**
 * Add the proper File-System permissions to a file so that SQL Server can run a RESTORE query.
 * 
 * @param username The username that SQL Server runs as, e.g. "NETWORK SERVICE"
 * @param file The file whose permissions will be modified.
 * @throws IOException 
 */
public static void addRestorePermissions(String username, Path file) throws IOException
{
    AclFileAttributeView aclAttr = Files.getFileAttributeView(file, AclFileAttributeView.class);

    UserPrincipalLookupService currULS = file.getFileSystem().getUserPrincipalLookupService();
    UserPrincipal principal = currULS.lookupPrincipalByName(username);

    AclEntry.Builder builder = AclEntry.newBuilder();
    builder.setPermissions(EnumSet.of(AclEntryPermission.READ_DATA,
            AclEntryPermission.READ_ACL,
            AclEntryPermission.READ_ATTRIBUTES,
            AclEntryPermission.READ_NAMED_ATTRS,
            AclEntryPermission.EXECUTE,
            AclEntryPermission.SYNCHRONIZE));

    builder.setPrincipal(principal);
    builder.setType(AclEntryType.ALLOW);
    aclAttr.setAcl(Collections.singletonList(builder.build()));
}
 
开发者ID:kervinpierre,项目名称:mssqlapplylogs,代码行数:27,代码来源:FSHelper.java

示例3: setupEnvironment

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
/**
 * creates and grants permission to daemon files directory
 */
private static void setupEnvironment() {
	final File daemonFilePath = new File("/var/run/iofabric");
	if (!daemonFilePath.exists()) {
		try {
			daemonFilePath.mkdirs();

			UserPrincipalLookupService lookupservice = FileSystems.getDefault().getUserPrincipalLookupService();
			final GroupPrincipal group = lookupservice.lookupPrincipalByGroupName("iofabric");
			Files.getFileAttributeView(daemonFilePath.toPath(), PosixFileAttributeView.class,
					LinkOption.NOFOLLOW_LINKS).setGroup(group);
			Set<PosixFilePermission> perms = PosixFilePermissions.fromString("rwxrwx---");
			Files.setPosixFilePermissions(daemonFilePath.toPath(), perms);
		} catch (Exception e) {
		}
	}

}
 
开发者ID:iotracks,项目名称:iofabric,代码行数:21,代码来源:Start.java

示例4: chown

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
@Override
 public void chown(String path, String username, String groupname) throws IOException {
java.nio.file.Path p = FileSystems.getDefault().getPath(path);
PosixFileAttributeView view = Files.getFileAttributeView(p, PosixFileAttributeView.class);
UserPrincipalLookupService service = p.getFileSystem().getUserPrincipalLookupService();
if(!StringUtils.isBlank(username)) {
	view.setOwner(service.lookupPrincipalByName(username));
}
if(!StringUtils.isBlank(groupname)) {
	view.setGroup(service.lookupPrincipalByGroupName(groupname));
}
 }
 
开发者ID:intel-hpdd,项目名称:lustre-connector-for-hadoop,代码行数:13,代码来源:LustreFsJavaImpl.java

示例5: setWindowsPermissions

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
private void setWindowsPermissions(Path path) {
    try {
        AclFileAttributeView aclAttr = Files.getFileAttributeView(path, AclFileAttributeView.class);
        UserPrincipalLookupService lookupService = path.getFileSystem().getUserPrincipalLookupService();
        aclAttr.setAcl(Arrays.asList(
                getAclEntry(lookupService.lookupPrincipalByName("SYSTEM"), Collections.emptySet()),
                getAclEntry(lookupService.lookupPrincipalByName(System.getProperty("user.name")), EnumSet.allOf(AclEntryPermission.class))
        ));
    } catch (IOException ex) {
        throw new RuntimeException(ex);
    }
}
 
开发者ID:jonestimd,项目名称:finances,代码行数:13,代码来源:ConnectionConfig.java

示例6: restrictAccess

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
private void restrictAccess() throws Exception
{

	UserPrincipal user = getDefaultFileOwner();

	Path path = Paths.get(file);
	AclFileAttributeView aclAttr = Files.getFileAttributeView(path,
			AclFileAttributeView.class);

	System.out.println("owner: " + aclAttr.getOwner());

	UserPrincipalLookupService upls = path.getFileSystem()
			.getUserPrincipalLookupService();
	// UserPrincipal user = upls.lookupPrincipalByName(System
	// .getProperty("user.name"));//
	// aclAttr.getOwner();//upls.lookupPrincipalByName("[email protected]");//System.getProperty("user.name"));
	AclEntry.Builder builder = AclEntry.newBuilder();
	builder.setPermissions(EnumSet.of(AclEntryPermission.READ_DATA,
			AclEntryPermission.WRITE_DATA, AclEntryPermission.APPEND_DATA,
			AclEntryPermission.READ_NAMED_ATTRS,
			AclEntryPermission.WRITE_NAMED_ATTRS,
			AclEntryPermission.READ_ATTRIBUTES,
			AclEntryPermission.WRITE_ATTRIBUTES,
			AclEntryPermission.READ_ACL, AclEntryPermission.SYNCHRONIZE));

	builder.setPrincipal(user);
	builder.setType(AclEntryType.ALLOW);
	aclAttr.setOwner(user);
	aclAttr.setAcl(Collections.singletonList(builder.build()));
}
 
开发者ID:yajsw,项目名称:yajsw,代码行数:31,代码来源:MyKeyStore.java

示例7: testGetUserPrincipalLookupServiceWillReturnTheServiceIfNotNull

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
@Test
public void testGetUserPrincipalLookupServiceWillReturnTheServiceIfNotNull() {
	UserPrincipalLookupService service = context.mock(UserPrincipalLookupService.class);
	
	context.checking(new Expectations() {{
		allowing(cloudHostSettings).getUserPrincipalLookupService();
		will(returnValue(service));
	}});
	
	Assert.assertEquals(service, impl.getUserPrincipalLookupService());
}
 
开发者ID:brdara,项目名称:java-cloud-filesystem-provider,代码行数:12,代码来源:CloudFileSystemTest.java

示例8: change

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
public void change(Event e, Object[] delta, Changer.ChangeMode mode) {
  if (mode == Changer.ChangeMode.SET) {
    Path pth = Paths.get(skUtilities.getDefaultPath(path.getSingle(e)));
    try {
      UserPrincipalLookupService lookupService = FileSystems.getDefault().getUserPrincipalLookupService();
      Files.setOwner(pth, lookupService.lookupPrincipalByName((String) delta[0]));
    } catch (Exception x) {
      skUtilities.prSysE("File: '" + pth + "' doesn't exist, or is not readable!", getClass().getSimpleName(), x);
    }
  }
}
 
开发者ID:tim740,项目名称:skUtilities,代码行数:12,代码来源:SExprFileOwner.java

示例9: getUserPrincipalFrom

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
private UserPrincipal getUserPrincipalFrom(String userName) throws IOException
{
    try {
        if (_isCacheEnabled) {
            return _nameToUserPrincipal.get(userName);
        }
        UserPrincipalLookupService service =
                FileSystems.getDefault().getUserPrincipalLookupService();
        return service.lookupPrincipalByName(userName);
    } catch (IOException | UnsupportedOperationException e) {
        return null;
    }
}
 
开发者ID:perlundq,项目名称:yajsync,代码行数:14,代码来源:UnixFileAttributeManager.java

示例10: getGroupPrincipalFrom

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
private GroupPrincipal getGroupPrincipalFrom(String groupName) throws IOException
{
    try {
        if (_isCacheEnabled) {
            return _nameToGroupPrincipal.get(groupName);
        }
        UserPrincipalLookupService service =
                FileSystems.getDefault().getUserPrincipalLookupService();
        return service.lookupPrincipalByGroupName(groupName);
    } catch (IOException | UnsupportedOperationException e) {
        return null;
    }
}
 
开发者ID:perlundq,项目名称:yajsync,代码行数:14,代码来源:UnixFileAttributeManager.java

示例11: getUserPrincipalFrom

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
private UserPrincipal getUserPrincipalFrom(String userName) throws IOException
{
    try {
        UserPrincipal principal = _nameToUserPrincipal.get(userName);
        if (principal == null) {
            UserPrincipalLookupService service =
                    FileSystems.getDefault().getUserPrincipalLookupService();
            principal = service.lookupPrincipalByName(userName);
            _nameToUserPrincipal.put(userName, principal);
        }
        return principal;
    } catch (UnsupportedOperationException e) {
        throw new IOException(e);
    }
}
 
开发者ID:perlundq,项目名称:yajsync,代码行数:16,代码来源:PosixFileAttributeManager.java

示例12: getGroupPrincipalFrom

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
private GroupPrincipal getGroupPrincipalFrom(String groupName) throws IOException
{
    try {
        GroupPrincipal principal = _nameToGroupPrincipal.get(groupName);
        if (principal == null) {
            UserPrincipalLookupService service =
                    FileSystems.getDefault().getUserPrincipalLookupService();
            principal = service.lookupPrincipalByGroupName(groupName);
            _nameToGroupPrincipal.put(groupName, principal);
        }
        return principal;
    } catch (UnsupportedOperationException e) {
        throw new IOException(e);
    }
}
 
开发者ID:perlundq,项目名称:yajsync,代码行数:16,代码来源:PosixFileAttributeManager.java

示例13: chown

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
/**
 * @param localFile the local file to use chown on
 * @param owner the file owner to set
 * @param group the file group to set
 * @throws IOException if chown couldn't be edited
 */
public static void chown(File localFile, String owner, String group) throws IOException {
	PosixFileAttributeView view = FileHelper.getFileAttributes(localFile);
	UserPrincipalLookupService lookupService = FileSystems.getDefault().getUserPrincipalLookupService();
	UserPrincipal fileOwner = lookupService.lookupPrincipalByName(owner);
	GroupPrincipal fileGroup = lookupService.lookupPrincipalByGroupName(group);
	view.setOwner(fileOwner);
	view.setGroup(fileGroup);
}
 
开发者ID:cinovo,项目名称:cloudconductor-agent-redhat,代码行数:15,代码来源:FileHelper.java

示例14: getOwner

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
@Override
public UserPrincipal getOwner() throws IOException {
  UserPrincipalLookupService ls = this.path.getFileSystem()
      .getUserPrincipalLookupService();
  FileStatus fileStatus = path.getFileSystem().getHDFS()
      .getFileStatus(path.getRawResolvedPath());
  return ls.lookupPrincipalByName(fileStatus.getOwner());
}
 
开发者ID:damiencarol,项目名称:jsr203-hadoop,代码行数:9,代码来源:HadoopFileOwnerAttributeView.java

示例15: testGetPosixViewSetOwner

import java.nio.file.attribute.UserPrincipalLookupService; //导入依赖的package包/类
/**
 * Test UserPrincipalLookupService support.
 * 
 * @throws IOException
 */
@Test
public void testGetPosixViewSetOwner() throws IOException {
  Path rootPath = Paths.get(clusterUri);

  UserPrincipalLookupService lus = rootPath.getFileSystem()
      .getUserPrincipalLookupService();
  assertNotNull(lus);
}
 
开发者ID:damiencarol,项目名称:jsr203-hadoop,代码行数:14,代码来源:TestUserPrincipalLookupService.java


注:本文中的java.nio.file.attribute.UserPrincipalLookupService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。