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

com.sap.cds.adapter.odata.v2.metadata.VocabAnnotationElement Maven / Gradle / Ivy

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