com.swisscom.cloud.sb.broker.model.CFServiceMetadata.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.model
import com.fasterxml.jackson.annotation.JsonIgnore
import javax.persistence.*
@Entity
@Table(name='service_metadata')
class CFServiceMetadata extends BaseModel{
@Column(name = '_key')
String key
@Column(name = '_value')
String value
@Column(name = '_type',columnDefinition="varchar(255) default 'String'")
String type
@ManyToOne
@JoinColumn(name="service_id")
@JsonIgnore
CFService service
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy