haifxu commented on code in PR #8040:
URL: https://github.com/apache/inlong/pull/8040#discussion_r1196304738


##########
inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/transform/StreamTransformService.java:
##########
@@ -47,14 +49,31 @@ public interface StreamTransformService {
      */
     Integer save(TransformRequest request, UserInfo opInfo);
 
+    /**
+     * Query transform information based on inlong group id and inlong stream 
id.
+     *
+     * @param request the transform page request
+     * @return the transform response
+     */
+    PageResult<TransformResponse> listTransform(TransformPageRequest request);
+
+    /**
+     * Query transform information based on id
+     *
+     * @param id transform id.
+     * @param opInfo userinfo of operator
+     * @return transform info
+     */
+    TransformResponse get(Integer id, UserInfo opInfo);
+
     /**
      * Query transform information based on inlong group id and inlong stream 
id.
      *
      * @param groupId the inlong group id
      * @param streamId the inlong stream id
      * @return the transform response
      */
-    List<TransformResponse> listTransform(String groupId, String streamId);

Review Comment:
   Done.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to