com.sap.cloud.sdk.service.csn2jpa.cds.model.CdsAssociation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of csn-reader Show documentation
Show all versions of csn-reader Show documentation
API for reading CDS models in CSN format
/*******************************************************************************
* * © 2018 SAP SE or an SAP affiliate company. All rights reserved. *
******************************************************************************/
package com.sap.cloud.sdk.service.csn2jpa.cds.model;
public abstract class CdsAssociation extends CdsElement {
private CdsCardinality cardinality = new CdsCardinality();
private String target;
private CdsContext targetContext;
private String targetEntity;
public CdsAssociation() {
}
protected CdsAssociation(String name) {
super(name);
}
public CdsCardinality getCardinality() {
return cardinality;
}
public void setCardinality(CdsCardinality cardinality) {
this.cardinality = cardinality;
}
public String getTarget() {
return target;
}
public void setTarget(String target) {
this.target = target;
}
public CdsContext getTargetContext() {
return targetContext;
}
public void setTargetContext(CdsContext targetContext) {
this.targetContext = targetContext;
}
public String getTargetEntity() {
return targetEntity;
}
public void setTargetEntity(String targetEntity) {
this.targetEntity = targetEntity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy