log.debug(credentials.getPrincipal() + " attempted to delete the " + namespaceId + " namespace");
throw new AccumuloSecurityException(credentials.getPrincipal(), SecurityErrorCode.UNSUPPORTED_OPERATION);
}
if (Namespaces.getTableIds(instance, namespaceId).size() > 0) {
throw new NamespaceNotEmptyException(namespaceId, namespace, null);
}
List<ByteBuffer> args = Arrays.asList(ByteBuffer.wrap(namespace.getBytes()));
Map<String,String> opts = new HashMap<String,String>();