public Object read( InputStream in ) throws Exception
{
JSONParser parser = new JSONParser( in );
JSONObject jObj = (JSONObject) parser.nextValue();
Marshall marshaller = new JSONMarshall();
return marshaller.unmarshall( jObj ).getReference();
}
/*
* (non-Javadoc)
*