use of org.codehaus.jackson.annotate.JsonIgnore in project motech by motech.
the class SettingsDto method getAdditionalProps.
@JsonIgnore
public Properties getAdditionalProps() {
Properties props = new Properties();
props.putAll(this.additionalProperties);
return props;
}
use of org.codehaus.jackson.annotate.JsonIgnore in project coprhd-controller by CoprHD.
the class OrderJobStatus method toOrderJobInfo.
@JsonIgnore
public OrderJobInfo toOrderJobInfo() {
OrderJobInfo info = new OrderJobInfo();
info.setTotal(total);
info.setStartTime(startTime);
info.setEndTime(endTime);
info.setCompleted(getCompletedNumber());
info.setFailed(getFailed());
info.setTimeUsedPerOrder(timeUsedPerOrder);
info.setTids(Collections.unmodifiableList(tids));
return info;
}
Aggregations