com.sap.cloud.mt.subscription.TenantMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multi-tenant-subscription Show documentation
Show all versions of multi-tenant-subscription Show documentation
Spring Boot Enablement Parent
package com.sap.cloud.mt.subscription;
import java.util.HashMap;
import java.util.Map;
public class TenantMetadata {
private String tenantId;
private Map additionalProperties;
TenantMetadata(String tenantId) {
this.tenantId = tenantId;
this.additionalProperties = new HashMap<>();
}
public String getTenantId() {
return this.tenantId;
}
public Map getAdditionalProperties() {
return additionalProperties;
}
public void putAdditionalProperty(String key, Object value) {
this.additionalProperties.put(key, value);
}
}