All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cloud.sdk.service.csn2jpa.cds.model.CdsAssociation Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
/*******************************************************************************
 * * © 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