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

com.groupbyinc.api.model.zone.AbstractContentZone Maven / Gradle / Ivy

The newest version!
package com.groupbyinc.api.model.zone;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.groupbyinc.api.model.Zone;

/**
 * @internal
 */
public abstract class AbstractContentZone> extends Zone {

  @JsonIgnore private String content;

  /**
   * @return If this zone is not a Record zone this will represent the value
   * set by the merchandiser.
   */
  protected String getContent() {
    return content;
  }

  /**
   * @param content Set the content
   * @return
   */
  @SuppressWarnings("unchecked")
  protected T setContent(String content) {
    this.content = content;
    return (T) this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy