
com.sap.cds.ql.CdsPath Maven / Gradle / Ivy
The newest version!
/*******************************************************************
* © 2022 SAP SE or an SAP affiliate company. All rights reserved. *
*******************************************************************/
package com.sap.cds.ql;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import com.sap.cds.CdsData;
/**
* Indicates the path to access structured {@link CdsData}.
*/
@Target({ TYPE, METHOD })
@Retention(RUNTIME)
@Documented
public @interface CdsPath {
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy