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

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

There is a newer version: 9.1.0
Show newest version
package com.contentful.java.cda;

/**
 * Represents a single space.
 */
public class CDASpace extends CDAResource {
  private static final long serialVersionUID = 8920494351623297673L;
  String name;

  /**
   * @return name of this space.
   */
  public String name() {
    return name;
  }

  /**
   * Create a String from this object.
   *
   * @return a String containing the id and name of this space
   */
  @Override public String toString() {
    return "CDASpace{"
        + "id='" + id() + '\''
        + ", name='" + name + '\''
        + '}';
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy