com.groupbyinc.api.model.zone.AbstractContentZone Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy