
com.contentful.java.cda.ArrayResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Contentful's Content Delivery API.
package com.contentful.java.cda;
import java.util.List;
import java.util.Map;
abstract class ArrayResource extends CDAResource {
List items;
Map assets;
Map entries;
/** Resources list. */
public List items() {
return items;
}
/** Assets mapped by asset id (includes linked resources). */
public Map assets() {
return assets;
}
/** Entries mapped by entry id (includes linked resources). */
public Map entries() {
return entries;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy