com.sap.cloud.sdk.service.prov.model.internal.CSNAssociationModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
SAP Cloud Platform SDK for service development
/*******************************************************************************
* (c) 201X SAP SE or an SAP affiliate company. All rights reserved.
******************************************************************************/
package com.sap.cloud.sdk.service.prov.model.internal;
import java.util.Map;
public class CSNAssociationModel {
private String associationName = "";
private String targetEntity = "";
private String targetService = "";
private Map cardinality;
private String type = "";
private Object on;
public String getTargetEntity() {
return targetEntity;
}
public void setTargetEntity(String targetEntity) {
this.targetEntity = targetEntity;
}
public String getTargetService() {
return targetService;
}
public void setTargetService(String targetService) {
this.targetService = targetService;
}
public Map getCardinality() {
return cardinality;
}
public void setCardinality(Map cardinality) {
this.cardinality = cardinality;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Object getOn() {
return on;
}
public void setOn(Object on) {
this.on = on;
}
public String getAssociationName() {
return associationName;
}
public void setAssociationName(String associationName) {
this.associationName = associationName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy