Class JavaImplDTO
java.lang.Object
org.apache.gravitino.dto.function.FunctionImplDTO
org.apache.gravitino.dto.function.JavaImplDTO
Java implementation DTO.
-
Constructor Summary
ConstructorsConstructorDescriptionJavaImplDTO(String runtime, FunctionResourcesDTO resources, Map<String, String> properties, String className) Constructor for JavaImplDTO. -
Method Summary
Modifier and TypeMethodDescriptionlanguage()Get the language of this implementation.Convert this DTO to aFunctionImplinstance.Methods inherited from class org.apache.gravitino.dto.function.FunctionImplDTO
fromFunctionImpl
-
Constructor Details
-
JavaImplDTO
public JavaImplDTO(String runtime, FunctionResourcesDTO resources, Map<String, String> properties, String className) Constructor for JavaImplDTO.- Parameters:
runtime- The runtime type.resources- The function resources.properties- The properties.className- The fully qualified class name.
-
-
Method Details
-
language
Description copied from class:FunctionImplDTOGet the language of this implementation.- Specified by:
languagein classFunctionImplDTO- Returns:
- The language.
-
toFunctionImpl
Description copied from class:FunctionImplDTOConvert this DTO to aFunctionImplinstance.- Specified by:
toFunctionImplin classFunctionImplDTO- Returns:
- The function implementation.
-