Skip to content

Commit

Permalink
Add docstrings to PluginSettings functions
Browse files Browse the repository at this point in the history
  • Loading branch information
QU3B1M committed Jan 14, 2025
1 parent 1947e26 commit 6cb00b7
Showing 1 changed file with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,54 +159,93 @@ public static PluginSettings getInstance() {
return instance;
}

/**
* @return the timeout value
*/
public Integer getTimeout() {
return timeout;
}

/**
* @return the job schedule value
*/
public Integer getJobSchedule() {
return jobSchedule;
}

/**
* @return the job page size value
*/
public Integer getJobPageSize() {
return jobPageSize;
}

/**
* @return the job keep-alive value
*/
public Integer getJobKeepAlive() {
return jobKeepAlive;
}

/**
* @return the job index name
*/
public static String getJobIndexName() {
return JOB_INDEX;
}

/**
* @return the job type
*/
public static String getJobType() {
return JOB_TYPE;
}

/**
* @return the job index template
*/
public String getJobIndexTemplate() {
return jobIndexTemplate;
}

/**
* @return the API prefix
*/
public String getApiPrefix() {
return apiPrefix;
}

/**
* @return the API endpoint
*/
public String getApiEndpoint() {
return apiEndpoint;
}

/**
* @return the base URI for the API
*/
public String getApiBaseUri() {
return apiBaseUri;
}

/**
* @return the URI for the API commands
*/
public String getApiCommandsUri() {
return apiCommandsUri;
}

/**
* @return the index name
*/
public String getIndexName() {
return indexName;
}

/**
* @return the index template
*/
public String getIndexTemplate() {
return indexTemplate;
}
Expand Down

0 comments on commit 6cb00b7

Please sign in to comment.