public Collection deSerCollection()

in gson/src/java/org/apache/fulcrum/json/gson/GSONBuilderService.java [103:108]


    public <T> Collection<T> deSerCollection(String json, Object collectionType,
            Class<T> elementType) throws Exception {
        getLogger().debug("deser:" + json);
        getLogger().debug("collectionType:" + collectionType);
        return  gson.create().fromJson(json, (Type)collectionType);
    }