All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.swisscom.cloud.sb.broker.services.common.ServiceTemplate.groovy Maven / Gradle / Ivy

There is a newer version: 6.21.7
Show newest version
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