*
* @param attribute an attribute to be registered
*/
public void registerAttribute(Attribute attribute){
try {
registeredAttributes.put(attribute.getName(), new AVEntry(attribute, new Null()));
} catch (NotInTheDomainException e) {
// This will not happend, as the Null ca always be assigned as an attribute value
}
}