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

com.contentful.java.cda.ArrayResource Maven / Gradle / Ivy

package com.contentful.java.cda;

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

/**
 * An abstraction of CDAResources combined into one array.
 *
 * @see CDAResource
 */
abstract class ArrayResource extends CDAResource {
  List items;

  Map assets;

  Map entries;

  /**
   * @return items in this resource.
   */
  public List items() {
    return items;
  }

  /**
   * @return assets mapped by asset id (includes linked resources).
   */
  public Map assets() {
    return assets;
  }

  /**
   * @return entries mapped by entry id (includes linked resources).
   */
  public Map entries() {
    return entries;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy