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

com.gooddata.warehouse.WarehouseSchemasDeserializer Maven / Gradle / Ivy

/*
 * Copyright (C) 2004-2017, GoodData(R) Corporation. All rights reserved.
 * This source code is licensed under the BSD-style license found in the
 * LICENSE.txt file in the root directory of this source tree.
 */
package com.gooddata.warehouse;

import com.gooddata.collections.PageableListDeserializer;
import com.gooddata.collections.Paging;

import java.util.List;
import java.util.Map;

/**
 * Deserializer of WarehouseSchemas.
 */
class WarehouseSchemasDeserializer extends PageableListDeserializer {

    protected WarehouseSchemasDeserializer() {
        super(WarehouseSchema.class);
    }

    @Override
    protected WarehouseSchemas createList(final List items, final Paging paging, final Map links) {
        return new WarehouseSchemas(items, paging, links);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy