*/
@Override
public boolean performFinish()
{
// Getting the SchemaPool
SchemaPool pool = SchemaPool.getInstance();
// Getting the right schema
Schema schema = pool.getSchema( schemaName );
// Creating the new attribute type and adding it to the schema
AttributeTypeLiteral attributeTypeLiteral = new AttributeTypeLiteral( this.page.getOidField() );
attributeTypeLiteral.setNames( new String[] { this.page.getNameField() } );
AttributeType attributeType = new AttributeType( attributeTypeLiteral, schema );