com.sap.cds.adapter.odata.v2.metadata.VocabAnnotationElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cds-adapter-odata-v2 Show documentation
Show all versions of cds-adapter-odata-v2 Show documentation
OData V2 adapter for CDS Services Java
/**************************************************************************
* (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
**************************************************************************/
package com.sap.cds.adapter.odata.v2.metadata;
import java.util.Collections;
import java.util.List;
import org.apache.olingo.odata2.api.edm.provider.AnnotationElement;
public class VocabAnnotationElement {
private List annoEleList;
public List getAnnotationElements() {
return Collections.unmodifiableList(annoEleList);
}
public void setAnnotationElements(List list){
annoEleList = Collections.unmodifiableList(list);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy