
com.manywho.sdk.api.run.state.StateValue Maven / Gradle / Ivy
The newest version!
package com.manywho.sdk.api.run.state;
import com.google.common.base.MoreObjects;
import com.google.common.collect.Lists;
import com.manywho.sdk.api.ContentType;
import com.manywho.sdk.api.run.PropertyAware;
import com.manywho.sdk.api.run.elements.type.MObject;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
public class StateValue implements PropertyAware {
private UUID valueElementId;
private String valueElementDeveloperName;
private List objectData = Lists.newArrayList();
private String contentValue;
private ContentType contentType;
public UUID getValueElementId() {
return valueElementId;
}
public void setValueElementId(UUID valueElementId) {
this.valueElementId = valueElementId;
}
public String getValueElementDeveloperName() {
return valueElementDeveloperName;
}
public void setValueElementDeveloperName(String valueElementDeveloperName) {
this.valueElementDeveloperName = valueElementDeveloperName;
}
public List getObjectData() {
return objectData;
}
public void setObjectData(List objectData) {
this.objectData = MoreObjects.firstNonNull(objectData, new ArrayList());
}
public String getContentValue() {
return contentValue;
}
public void setContentValue(String contentValue) {
this.contentValue = contentValue;
}
public ContentType getContentType() {
return contentType;
}
public void setContentType(ContentType contentType) {
this.contentType = contentType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy