CharlieYan24 commented on code in PR #4459: URL: https://github.com/apache/linkis/pull/4459#discussion_r1167684928
########## linkis-commons/linkis-storage/src/main/java/org/apache/linkis/storage/domain/MethodEntity.java: ########## @@ -0,0 +1,104 @@ +/* + * 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.storage.domain; + +/** + * Engine unique Id(engine唯一的Id) + * + * <p>Fs type(fs类型) + * + * <p>Create a user to start the corresponding jvm user(创建用户为对应启动的jvm用户) + * + * <p>Proxy user(代理用户) + * + * <p>client Ip for whitelist control(ip用于白名单控制) + * + * <p>Method name called(调用的方法名) + * + * <p>Method parameter(方法参数) + */ +public class MethodEntity { + public long id; + public String fsType; + public String creatorUser; + public String proxyUser; + private String clientIp; + public String methodName; + public Object[] params; Review Comment: Yes, I have finished modify field variable to private , Thanks. Sorry for later reply . -- 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: notifications-unsubscr...@linkis.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@linkis.apache.org For additional commands, e-mail: notifications-h...@linkis.apache.org