dstSchemaBuilder.addAll(sourceFC.getAttributeDescriptors());
dstSchemaBuilder.add(YEARATTRIBUTENAME, Integer.class);
dstSchemaBuilder.add(MONTHATTRIBUTENAME, Integer.class);
dstSchemaBuilder.add(DAYATTRIBUTENAME, Integer.class);
dstSchemaBuilder.add(DATEATTRIBUTENAME, Date.class);
SimpleFeatureType sft = dstSchemaBuilder.buildFeatureType();
if(LOGGER.isDebugEnabled()) {
LOGGER.debug("Adding source attribs:");
for (AttributeDescriptor attr : sourceFC.getAttributeDescriptors()) {
LOGGER.debug( " Attr: "+attr);