org.apache.accumulo.core.client.impl
public class NamespaceOperationsImpl extends NamespaceOperationsHelper
Constructor and Description |
---|
NamespaceOperationsImpl(Instance instance,
Credentials credentials,
TableOperationsImpl tableOps) |
Modifier and Type | Method and Description |
---|---|
int |
addConstraint(String namespace,
String constraintClassName)
Add a new constraint to a namespace.
|
void |
attachIterator(String namespace,
IteratorSetting setting,
EnumSet<IteratorUtil.IteratorScope> scopes)
Add an iterator to a namespace on the given scopes.
|
void |
create(String namespace)
Create an empty namespace with no initial configuration.
|
void |
delete(String namespace)
Delete an empty namespace
|
boolean |
exists(String namespace)
A method to check if a namespace exists in Accumulo.
|
Iterable<Map.Entry<String,String>> |
getProperties(String namespace)
Gets properties of a namespace, which are inherited by tables in this namespace.
|
SortedSet<String> |
list()
Retrieve a list of namespaces in Accumulo.
|
Map<String,String> |
namespaceIdMap()
Get a mapping of namespace name to internal namespace id.
|
void |
removeProperty(String namespace,
String property)
Removes a property from a namespace.
|
void |
rename(String oldNamespaceName,
String newNamespaceName)
Rename a namespace
|
void |
setProperty(String namespace,
String property,
String value)
Sets a property on a namespace which applies to all tables in the namespace.
|
boolean |
testClassLoad(String namespace,
String className,
String asTypeName)
Test to see if the instance can load the given class as the given type.
|
attachIterator, checkIteratorConflicts, defaultNamespace, getIteratorSetting, listConstraints, listIterators, removeConstraint, removeIterator, systemNamespace
public NamespaceOperationsImpl(Instance instance, Credentials credentials, TableOperationsImpl tableOps)
public SortedSet<String> list()
NamespaceOperations
public boolean exists(String namespace)
NamespaceOperations
namespace
- the name of the namespacepublic void create(String namespace) throws AccumuloException, AccumuloSecurityException, NamespaceExistsException
NamespaceOperations
namespace
- the name of the namespaceAccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceExistsException
- if the specified namespace already existspublic void delete(String namespace) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException, NamespaceNotEmptyException
NamespaceOperations
namespace
- the name of the namespaceAccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't existNamespaceNotEmptyException
- if the namespaces still contains tablespublic void rename(String oldNamespaceName, String newNamespaceName) throws AccumuloSecurityException, NamespaceNotFoundException, AccumuloException, NamespaceExistsException
NamespaceOperations
oldNamespaceName
- the old namespace namenewNamespaceName
- the new namespace nameAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the old namespace does not existAccumuloException
- if a general error occursNamespaceExistsException
- if the new namespace already existspublic void setProperty(String namespace, String property, String value) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException
NamespaceOperations
namespace
- the name of the namespaceproperty
- the name of a per-table propertyvalue
- the value to set a per-table property toAccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't existpublic void removeProperty(String namespace, String property) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException
NamespaceOperations
namespace
- the name of the namespaceproperty
- the name of a per-table propertyAccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't existpublic Iterable<Map.Entry<String,String>> getProperties(String namespace) throws AccumuloException, NamespaceNotFoundException
NamespaceOperations
namespace
- the name of the namespaceAccumuloException
- if a general error occursNamespaceNotFoundException
- if the specified namespace doesn't existpublic Map<String,String> namespaceIdMap()
NamespaceOperations
public boolean testClassLoad(String namespace, String className, String asTypeName) throws NamespaceNotFoundException, AccumuloException, AccumuloSecurityException
NamespaceOperations
namespace
- the name of the namespaceclassName
- the class to try to loadasTypeName
- the interface or superclass the given class is attempted to load asNamespaceNotFoundException
- if the specified namespace doesn't existAccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionpublic void attachIterator(String namespace, IteratorSetting setting, EnumSet<IteratorUtil.IteratorScope> scopes) throws AccumuloSecurityException, AccumuloException, NamespaceNotFoundException
NamespaceOperations
attachIterator
in interface NamespaceOperations
attachIterator
in class NamespaceOperationsHelper
namespace
- the name of the namespacesetting
- object specifying the properties of the iteratorscopes
- the set of scopes the iterator should apply toAccumuloSecurityException
- if the user does not have permissionAccumuloException
- if a general error occursNamespaceNotFoundException
- if the specified namespace doesn't existpublic int addConstraint(String namespace, String constraintClassName) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException
NamespaceOperations
addConstraint
in interface NamespaceOperations
addConstraint
in class NamespaceOperationsHelper
namespace
- the name of the namespaceconstraintClassName
- the full name of the constraint classAccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't existCopyright © 2011–2016 The Apache Software Foundation. All rights reserved.