com.swisscom.cloud.sb.broker.services.common.ServiceTemplate.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Swisscom's Open Service Broker API implementation
package com.swisscom.cloud.sb.broker.services.common
public class ServiceTemplate {
private String name
private String version
private List templates
String getName() {
return name
}
void setName(String name) {
this.name = name
}
String getVersion() {
return version
}
void setVersion(String version) {
this.version = version
}
List getTemplates() {
return templates
}
void setTemplates(List templates) {
this.templates = templates
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy