
com.sap.cds.ql.cqn.transformation.CqnCustomTransformation Maven / Gradle / Ivy
The newest version!
/*******************************************************************
* © 2023 SAP SE or an SAP affiliate company. All rights reserved. *
*******************************************************************/
package com.sap.cds.ql.cqn.transformation;
import java.util.Map;
import com.google.common.annotations.Beta;
import com.sap.cds.ql.cqn.CqnToken;
@Beta
public interface CqnCustomTransformation extends CqnTransformation {
String name();
Map parameters();
@Override
default Kind kind() {
return Kind.CUSTOM;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy