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

peacewong pushed a commit to branch dev-1.1.0-datasource
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git

commit 0a96091508fae5695d5b5640b083e6b95f4c51eb
Author: xiaojie19852006 <[email protected]>
AuthorDate: Fri Feb 11 14:12:05 2022 +0800

    add the response for get column of metadata result
---
 .../client/response/MetadataGetColumnsResult.scala | 39 ++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git 
a/linkis-public-enhancements/linkis-datasource/linkis-datasource-client/src/main/scala/org/apache/linkis/datasource/client/response/MetadataGetColumnsResult.scala
 
b/linkis-public-enhancements/linkis-datasource/linkis-datasource-client/src/main/scala/org/apache/linkis/datasource/client/response/MetadataGetColumnsResult.scala
new file mode 100644
index 0000000..e5f5e34
--- /dev/null
+++ 
b/linkis-public-enhancements/linkis-datasource/linkis-datasource-client/src/main/scala/org/apache/linkis/datasource/client/response/MetadataGetColumnsResult.scala
@@ -0,0 +1,39 @@
+/*
+ * 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.linkis.datasource.client.response
+
+import org.apache.linkis.httpclient.dws.DWSHttpClient
+import org.apache.linkis.httpclient.dws.annotation.DWSHttpMessageResult
+import org.apache.linkis.httpclient.dws.response.DWSResult
+import org.apache.linkis.metadatamanager.common.domain.MetaColumnInfo
+
+import java.util
+import scala.beans.BeanProperty
+
+@DWSHttpMessageResult("/api/rest_j/v\\d+/metadatamanager/columns/(\\S+)/db/(\\S+)/table/(\\S+)")
+class MetadataGetColumnsResult extends DWSResult{
+  @BeanProperty var columns: util.List[java.util.Map[String, Any]] = _
+
+  def getAllColumns: util.List[MetaColumnInfo] = {
+    import scala.collection.JavaConverters._
+    columns.asScala.map(x => {
+      val str = DWSHttpClient.jacksonJson.writeValueAsString(x)
+      DWSHttpClient.jacksonJson.readValue(str, classOf[MetaColumnInfo])
+    }).asJava
+  }
+}

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to