Skip to content

getSchema

Chuck May edited this page Apr 14, 2015 · 4 revisions

API

public StagingSchema getSchema(String id)

Description

Get a StagingSchema based on schema identifier.

Examples

Staging staging = Staging.getInstance(CsDataProvider.getInstance(CsVersion.v020550));

Assert.assertNull(staging.getSchema("bad_schema_name"));
Assert.assertNotNull(staging.getSchema("brain"));
Assert.assertEquals(Integer.valueOf(143), staging.getSchema("brain").getSchemaNum());
Clone this wiki locally