52 lines
1.2 KiB
Java
52 lines
1.2 KiB
Java
package com.inteligr8.alfresco.acs.model;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
@com.fasterxml.jackson.annotation.JsonIgnoreProperties(ignoreUnknown = true)
|
|
public class ActionExecResultEntry {
|
|
|
|
@ApiModelProperty(required = true, value = "")
|
|
private ActionExecResult entry = null;
|
|
/**
|
|
* Get entry
|
|
* @return entry
|
|
**/
|
|
@JsonProperty("entry")
|
|
public ActionExecResult getEntry() {
|
|
return entry;
|
|
}
|
|
|
|
public void setEntry(ActionExecResult entry) {
|
|
this.entry = entry;
|
|
}
|
|
|
|
public ActionExecResultEntry entry(ActionExecResult entry) {
|
|
this.entry = entry;
|
|
return this;
|
|
}
|
|
|
|
|
|
@Override
|
|
public String toString() {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("class ActionExecResultEntry {\n");
|
|
|
|
sb.append(" entry: ").append(toIndentedString(entry)).append("\n");
|
|
sb.append("}");
|
|
return sb.toString();
|
|
}
|
|
|
|
/**
|
|
* Convert the given object to string with each line indented by 4 spaces
|
|
* (except the first line).
|
|
*/
|
|
private static String toIndentedString(java.lang.Object o) {
|
|
if (o == null) {
|
|
return "null";
|
|
}
|
|
return o.toString().replace("\n", "\n ");
|
|
}
|
|
}
|
|
|