Subversion Repositories eFlore/Applications.del

Rev

Rev 386 | Rev 941 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package org.tela_botanica.del.client.services.rest.async;

import org.tela_botanica.del.client.modeles.ImageServiceResultat;

import com.google.gwt.json.client.JSONParser;

public abstract class ImagesParTaxonCallback extends PHPCallback<ImageServiceResultat> {

        @Override
        public ImageServiceResultat parserJSON(String retourService) {
                ImageServiceResultat resultat = new ImageServiceResultat(JSONParser.parseStrict(retourService));
                return resultat;
        }

}