use of org.apache.hadoop.yarn.server.api.protocolrecords.RefreshAdminAclsResponse in project hadoop by apache.
the class TestResourceManagerAdministrationProtocolPBClientImpl method testRefreshAdminAcls.
/**
* Test method refreshAdminAcls. This method is present and it works.
*/
@Test
public void testRefreshAdminAcls() throws Exception {
RefreshAdminAclsRequest request = recordFactory.newRecordInstance(RefreshAdminAclsRequest.class);
RefreshAdminAclsResponse response = client.refreshAdminAcls(request);
assertNotNull(response);
}
Aggregations