com.swisscom.cloud.sb.broker.util.servicedetail.ServiceDetailKey.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.util.servicedetail
import groovy.transform.CompileStatic
@CompileStatic
enum ServiceDetailKey implements AbstractServiceDetailKey {
HOST("host", ServiceDetailType.HOST),
PORT("port", ServiceDetailType.PORT),
DATABASE("database", ServiceDetailType.OTHER),
USER("user", ServiceDetailType.USERNAME),
PASSWORD("password", ServiceDetailType.PASSWORD)
ServiceDetailKey(String key, ServiceDetailType serviceDetailType) {
com_swisscom_cloud_sb_broker_util_servicedetail_AbstractServiceDetailKey__key = key
com_swisscom_cloud_sb_broker_util_servicedetail_AbstractServiceDetailKey__serviceDetailType = serviceDetailType
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy