com.swisscom.cloud.sb.broker.services.bosh.dto.TaskDto.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of broker Show documentation
Show all versions of broker Show documentation
Swisscom's Open Service Broker API implementation
package com.swisscom.cloud.sb.broker.services.bosh.dto
import groovy.transform.CompileStatic
@CompileStatic
class TaskDto implements Serializable {
int id
State state
String description
int timestamp
String result
String user
@Override
public String toString() {
return "TaskDto{" +
"id=" + id +
", state=" + state +
", description='" + description + '\'' +
", timestamp=" + timestamp +
", result='" + result + '\'' +
", user='" + user + '\'' +
'}';
}
enum State {
queued, processing, cancelled, cancelling, done, errored
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy