本文整理汇总了Java中org.apache.hadoop.nfs.nfs3.response.GETATTR3Response类的典型用法代码示例。如果您正苦于以下问题:Java GETATTR3Response类的具体用法?Java GETATTR3Response怎么用?Java GETATTR3Response使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
GETATTR3Response类属于org.apache.hadoop.nfs.nfs3.response包,在下文中一共展示了GETATTR3Response类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testGetattr
import org.apache.hadoop.nfs.nfs3.response.GETATTR3Response; //导入依赖的package包/类
@Test(timeout = 60000)
public void testGetattr() throws Exception {
HdfsFileStatus status = nn.getRpcServer().getFileInfo("/tmp/bar");
long dirId = status.getFileId();
FileHandle handle = new FileHandle(dirId);
XDR xdr_req = new XDR();
GETATTR3Request req = new GETATTR3Request(handle);
req.serialize(xdr_req);
// Attempt by an unpriviledged user should fail.
GETATTR3Response response1 = nfsd.getattr(xdr_req.asReadOnlyWrap(),
securityHandlerUnpriviledged,
new InetSocketAddress("localhost", 1234));
assertEquals("Incorrect return code", Nfs3Status.NFS3ERR_ACCES,
response1.getStatus());
// Attempt by a priviledged user should pass.
GETATTR3Response response2 = nfsd.getattr(xdr_req.asReadOnlyWrap(),
securityHandler, new InetSocketAddress("localhost", 1234));
assertEquals("Incorrect return code", Nfs3Status.NFS3_OK,
response2.getStatus());
}
示例2: getattr
import org.apache.hadoop.nfs.nfs3.response.GETATTR3Response; //导入依赖的package包/类
@Override
public GETATTR3Response getattr(XDR xdr, RpcInfo info) {
return getattr(xdr, getSecurityHandler(info), info.remoteAddress());
}