* A type mapping is an association between a code and a management type.
*/
private void addTypeMappings()
{
Configuration configuration = Configuration.getInstance();
configuration.addTypeMapping(new TypeMapping(1,new Uint8(),Names.NUMBER_VALIDATOR));
configuration.addTypeMapping(new TypeMapping(2,new Uint16(),Names.NUMBER_VALIDATOR));
configuration.addTypeMapping(new TypeMapping(3,new Uint32(),Names.NUMBER_VALIDATOR));
configuration.addTypeMapping(new TypeMapping(4,new Uint64(),Names.NUMBER_VALIDATOR));
configuration.addTypeMapping(new TypeMapping(6,new Str8(),Names.STRING_VALIDATOR));
configuration.addTypeMapping(new TypeMapping(7,new Str16(),Names.STRING_VALIDATOR));