com.sap.cloud.sdk.service.csn2jpa.cds.model.CdsUnmanagedAssociation 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;
import com.sap.cloud.sdk.service.csn2jpa.cds.model.el.Predicate;
public class CdsUnmanagedAssociation extends CdsAssociation {
private String on;
private Predicate onCond;
public Predicate getOnCond() {
return onCond;
}
public CdsUnmanagedAssociation() {
}
public CdsUnmanagedAssociation(String name) {
super(name);
}
public String getOn() {
return on;
}
public void setOn(String on) {
this.on = on;
}
public void setOnCond(Predicate onCond) {
this.onCond = onCond;
}
@Override
public void accept(CdsVisitor visitor) {
onCond.accept(visitor);
visitor.visit(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy