com.sap.cloud.sdk.service.csn2jpa.cds.model.CdsAnnotation 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.google.common.base.MoreObjects;
public class CdsAnnotation {
private String name;
private Object value;
public CdsAnnotation() {
}
public CdsAnnotation(String name, Object value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
@Override
public String toString() {
return MoreObjects.toStringHelper(CdsAnnotation.class).add("name", name).add("value", value).toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy