use of org.apache.hadoop.yarn.server.api.protocolrecords.RefreshServiceAclsResponse in project hadoop by apache.
the class TestResourceManagerAdministrationProtocolPBClientImpl method testRefreshServiceAcls.
@Test
public void testRefreshServiceAcls() throws Exception {
RefreshServiceAclsRequest request = recordFactory.newRecordInstance(RefreshServiceAclsRequest.class);
RefreshServiceAclsResponse response = client.refreshServiceAcls(request);
assertNotNull(response);
}
Aggregations