com.swisscom.cloud.sb.broker.backup.job.config.BackupCreationJobConfig.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.backup.job.config
import com.swisscom.cloud.sb.broker.async.job.AbstractJob
import com.swisscom.cloud.sb.broker.async.job.JobConfig
import com.swisscom.cloud.sb.broker.model.Backup
import groovy.transform.CompileStatic
@CompileStatic
class BackupCreationJobConfig extends JobConfig {
final Backup backup
BackupCreationJobConfig(Class extends AbstractJob> jobClass, String guid, int retryIntervalInSeconds, double maxRetryDurationInMinutes, Backup backup) {
super(jobClass, guid, retryIntervalInSeconds, maxRetryDurationInMinutes)
this.backup = backup
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy