本文整理汇总了Java中java.nio.file.attribute.UserPrincipalNotFoundException类的典型用法代码示例。如果您正苦于以下问题:Java UserPrincipalNotFoundException类的具体用法?Java UserPrincipalNotFoundException怎么用?Java UserPrincipalNotFoundException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
UserPrincipalNotFoundException类属于java.nio.file.attribute包,在下文中一共展示了UserPrincipalNotFoundException类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: putBlob
import java.nio.file.attribute.UserPrincipalNotFoundException; //导入依赖的package包/类
private String putBlob( Blob blob )
{
String etag = null;
try
{
etag = blobStore.putBlob( config.container, blob );
}
catch ( RuntimeException rte )
{
Throwable cause = rte.getCause();
if ( cause != null && cause instanceof UserPrincipalNotFoundException )
{
// Intentionally ignored exception which occurs with JClouds (< 2.0.0) on localized Windows.
// See https://issues.apache.org/jira/browse/JCLOUDS-1015
log.debug( "Ignored UserPrincipalNotFoundException. Workaround for 'JCLOUDS-1015'." );
}
else
{
throw rte;
}
}
return etag;
}
开发者ID:dhis2,项目名称:dhis2-core,代码行数:27,代码来源:JCloudsFileResourceContentStore.java
示例2: putBlob
import java.nio.file.attribute.UserPrincipalNotFoundException; //导入依赖的package包/类
private String putBlob( Blob blob )
{
String etag = null;
try
{
etag = blobStore.putBlob( container, blob );
}
catch ( RuntimeException rte )
{
Throwable cause = rte.getCause();
if ( cause != null && cause instanceof UserPrincipalNotFoundException )
{
// Intentionally ignored exception which occurs with JClouds on localized
// Windows systems while trying to resolve the "Everyone" group.
// See https://issues.apache.org/jira/browse/JCLOUDS-1015
log.debug( "Ignored UserPrincipalNotFoundException. Workaround for JClouds bug 'JCLOUDS-1015'." );
}
else
{
throw rte;
}
}
return etag;
}
开发者ID:ehatle,项目名称:AgileAlligators,代码行数:28,代码来源:JCloudsFileResourceContentStore.java
示例3: lookupPrincipalByName
import java.nio.file.attribute.UserPrincipalNotFoundException; //导入依赖的package包/类
@Override
public UserPrincipal lookupPrincipalByName(String name) throws IOException {
if(name.equals(userPrincipal.getName())) {
return userPrincipal;
}
throw new UserPrincipalNotFoundException(name);
}
开发者ID:sbridges,项目名称:ephemeralfs,代码行数:8,代码来源:EphemeralFsUserPrincipalLookupService.java
示例4: lookupPrincipalByGroupName
import java.nio.file.attribute.UserPrincipalNotFoundException; //导入依赖的package包/类
@Override
public GroupPrincipal lookupPrincipalByGroupName(String group)
throws IOException {
if(group.equals(groupPrincipal.getName())) {
return groupPrincipal;
}
throw new UserPrincipalNotFoundException(group);
}
开发者ID:sbridges,项目名称:ephemeralfs,代码行数:10,代码来源:EphemeralFsUserPrincipalLookupService.java
示例5: lookupPrincipalByGroupName
import java.nio.file.attribute.UserPrincipalNotFoundException; //导入依赖的package包/类
@Override
public GroupPrincipal lookupPrincipalByGroupName(String group) throws IOException {
if (!supportsGroups) {
throw new UserPrincipalNotFoundException(group); // required by spec
}
return createGroupPrincipal(group);
}
开发者ID:google,项目名称:jimfs,代码行数:8,代码来源:UserLookupService.java
示例6: testServiceNotSupportingGroups
import java.nio.file.attribute.UserPrincipalNotFoundException; //导入依赖的package包/类
@Test
public void testServiceNotSupportingGroups() throws IOException {
UserPrincipalLookupService service = new UserLookupService(false);
try {
service.lookupPrincipalByGroupName("group");
fail();
} catch (UserPrincipalNotFoundException expected) {
assertThat(expected.getName()).isEqualTo("group");
}
}
开发者ID:google,项目名称:jimfs,代码行数:12,代码来源:UserLookupServiceTest.java
示例7: lookupPrincipalByName
import java.nio.file.attribute.UserPrincipalNotFoundException; //导入依赖的package包/类
@Override
public SimplePrincipal lookupPrincipalByName( String name ) throws IOException {
return users.getOrThrow( name, new UserPrincipalNotFoundException( "no such user: " + name ) );
}
开发者ID:openCage,项目名称:memoryfs,代码行数:5,代码来源:Principals.java
示例8: lookupPrincipalByGroupName
import java.nio.file.attribute.UserPrincipalNotFoundException; //导入依赖的package包/类
@Override
public SimplePrincipal lookupPrincipalByGroupName( String name ) throws IOException {
return groups.getOrThrow( name, new UserPrincipalNotFoundException( "no such group: " + name ) );
}
开发者ID:openCage,项目名称:memoryfs,代码行数:5,代码来源:Principals.java
注:本文中的java.nio.file.attribute.UserPrincipalNotFoundException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论