This is an automated email from the ASF dual-hosted git repository.

fuweng11 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new c7eb314342 [INLONG-12127][Common] Add Json config (#12128)
c7eb314342 is described below

commit c7eb3143428d8a240f7e3ca824f8d8a969a1ac87
Author: ChunLiang Lu <[email protected]>
AuthorDate: Thu May 28 10:47:52 2026 +0800

    [INLONG-12127][Common] Add Json config (#12128)
---
 .../pojo/sort/dataflow/dataType/JsonConfig.java    | 31 ++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git 
a/inlong-common/src/main/java/org/apache/inlong/common/pojo/sort/dataflow/dataType/JsonConfig.java
 
b/inlong-common/src/main/java/org/apache/inlong/common/pojo/sort/dataflow/dataType/JsonConfig.java
new file mode 100644
index 0000000000..6d3f27a5fe
--- /dev/null
+++ 
b/inlong-common/src/main/java/org/apache/inlong/common/pojo/sort/dataflow/dataType/JsonConfig.java
@@ -0,0 +1,31 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.inlong.common.pojo.sort.dataflow.dataType;
+
+import lombok.Data;
+
+@Data
+public class JsonConfig implements DataTypeConfig {
+
+    /**
+     * serialVersionUID long
+     */
+    private static final long serialVersionUID = 1513069555859662342L;
+
+    private String rowsNodePath;
+}

Reply via email to