All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.box.boxjavalibv2.responseparsers.BoxObjectResponseParser Maven / Gradle / Ivy

package com.box.boxjavalibv2.responseparsers;

import com.box.boxjavalibv2.interfaces.IBoxJSONParser;
import com.box.restclientv2.responseparsers.DefaultBoxJSONResponseParser;

/**
 * Parser to parse {@link com.box.restclientv2.responses.DefaultBoxResponse} into Box DAO objects. It analyse the response JSON String and uses Jackson JSON processor to generate Box DAO objects.
 */
@SuppressWarnings("rawtypes")
public class BoxObjectResponseParser extends DefaultBoxJSONResponseParser {

    /**
     * Constructor.
     * 
     * @param type
     *            type of the box resource
     * 
     * @param cls
     *            Object class.
     */
    public BoxObjectResponseParser(Class cls, IBoxJSONParser parser) {
        super(cls, parser);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy