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

com.jelastic.api.environment.response.TemplateArrayResponse Maven / Gradle / Ivy

The newest version!
/*Server class MD5: 8e4b86ffc3653a7daf366b2daf5abff3*/
package com.jelastic.api.environment.response;

import com.jelastic.api.development.response.interfaces.ArrayItem;
import com.jelastic.api.development.response.interfaces.ArrayResponse;
import com.jelastic.api.system.persistence.Template;
import java.util.Collection;

/**
 * @name Jelastic API Client
 * @version 8.11.2
 * @copyright Jelastic, Inc.
 */
public class TemplateArrayResponse extends ArrayResponse {

    public TemplateArrayResponse() {
    }

    private Template collectionTypeMarker = null;

    public TemplateArrayResponse(int result, String error) {
        super(result, error);
    }

    public TemplateArrayResponse(ArrayResponse response) {
        super(response.getClassName(), response.getArray());
    }

    public TemplateArrayResponse(Class generic, Collection array) {
        super(generic, array);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy