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

add java doc to dubbo-config-api #3103

Merged
merged 6 commits into from
Jan 2, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
update javadoc
  • Loading branch information
lixiaojiee committed Dec 29, 2018
commit 8e33f7591d92ec70315c0ff6e66c811b6017ca32
Original file line number Diff line number Diff line change
Expand Up @@ -29,31 +29,31 @@
public class MetadataReportConfig extends AbstractConfig {

private static final long serialVersionUID = 55233L;
// register center address
// Register center address
private String address;

// username to login register center
// Username to login register center
private String username;

// password to login register center
// Password to login register center
private String password;

// request timeout in milliseconds for register center
// Request timeout in milliseconds for register center
private Integer timeout;

// customized parameters
// Customized parameters
private Map<String, String> parameters;

private Integer retryTimes;

private Integer retryPeriod;
/**
* by default the metadatastore will store full metadata repeatly every day .
* By default the metadatastore will store full metadata repeatly every day .
*/
private Boolean cycleReport;

/**
* sync report, default async
* Sync report, default async
*/
private Boolean syncReport;

Expand Down