Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The plugin-impl module adds code comments and optimizes the code format #239

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Tencent is pleased to support the open source community by making Polaris available.
* <p>
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
Expand All @@ -23,7 +23,6 @@
import com.tencent.tsf.femas.plugin.config.gov.*;
import com.tencent.tsf.femas.plugin.impl.config.*;


/**
* SDK全量配置对象
*
Expand Down Expand Up @@ -178,14 +177,17 @@ public LaneConfigImpl getLane() {
return lane;
}

@Override
public MetricsConfig getMetrics() {
return metrics;
}

@Override
public MetricsExporterConfig getMetricsExporter() {
return metricsExporter;
}

@Override
public MetricsTransformerConfig getMetricsTransformer() {
return metricsTransformer;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.tencent.tsf.femas.plugin.impl;



import com.tencent.tsf.femas.plugin.Attribute;
import com.tencent.tsf.femas.plugin.Plugin;
import com.tencent.tsf.femas.plugin.PluginProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

import java.util.List;


/**
* @Author leoziltong
* @Date: 2021/6/2 20:50
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Tencent is pleased to support the open source community by making Polaris available.
* <p>
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Tencent is pleased to support the open source community by making Polaris available.
* <p>
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Tencent is pleased to support the open source community by making Polaris available.
* <p>
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
Expand All @@ -24,7 +24,6 @@
import com.tencent.tsf.femas.plugin.config.verify.DefaultValues;
import org.apache.commons.lang3.StringUtils;


/**
* @author leozilong
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Tencent is pleased to support the open source community by making Polaris available.
* <p>
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
Expand All @@ -24,7 +24,6 @@
import com.tencent.tsf.femas.plugin.config.verify.DefaultValues;
import org.apache.commons.lang3.StringUtils;


/**
* 负载均衡相关配置项
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import java.util.ArrayList;
import java.util.List;


/**
* @Author leoziltong
* @Date: 2021/6/2 20:50
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/*
* Tencent is pleased to support the open source community by making Polaris available.
* <p>
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
Expand Down Expand Up @@ -27,7 +27,6 @@

import java.util.List;


/**
* 限流算法配置
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import com.tencent.tsf.femas.plugin.config.global.ServerConnectorConfig;
import com.tencent.tsf.femas.plugin.config.global.ServerConnectorEnum;


import java.util.List;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.tencent.tsf.femas.plugin.config.global.SystemConfig;


/**
* api相关的配置对象
*
Expand All @@ -30,7 +29,6 @@
@JsonIgnoreProperties(ignoreUnknown = true)
public class SystemConfigImpl implements SystemConfig {


@Override
public void verify() throws IllegalArgumentException {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.tencent.tsf.femas.plugin.impl.config.rule.router;



import com.tencent.tsf.femas.plugin.config.gov.ServiceRouterConfig;
import com.tencent.tsf.femas.plugin.config.verify.Verifier;

Expand Down