refactor: Remove redundant getter and setter methods in ToolMetadata
This commit is contained in:
@@ -23,35 +23,9 @@ public class ToolMetadata {
|
|||||||
private String podUrl;
|
private String podUrl;
|
||||||
private String integrationType;
|
private String integrationType;
|
||||||
private String mciServiceId;
|
private String mciServiceId;
|
||||||
public String getToolName() { return toolName; }
|
|
||||||
public void setToolName(String toolName) { this.toolName = toolName; }
|
|
||||||
|
|
||||||
public String getDescription() { return description; }
|
|
||||||
public void setDescription(String description) { this.description = description; }
|
|
||||||
|
|
||||||
public Map<String, Object> getParametersSchema() { return parametersSchema; }
|
|
||||||
public void setParametersSchema(Map<String, Object> parametersSchema) { this.parametersSchema = parametersSchema; }
|
|
||||||
|
|
||||||
public Map<String, String> getActionPrompts() { return actionPrompts; }
|
|
||||||
public void setActionPrompts(Map<String, String> actionPrompts) { this.actionPrompts = actionPrompts; }
|
|
||||||
|
|
||||||
public String getDomainGroup() { return domainGroup; }
|
|
||||||
public void setDomainGroup(String domainGroup) { this.domainGroup = domainGroup; }
|
|
||||||
|
|
||||||
public String getEndpoint() { return endpoint; }
|
|
||||||
public void setEndpoint(String endpoint) { this.endpoint = endpoint; }
|
|
||||||
|
|
||||||
public String getPodUrl() { return podUrl; }
|
|
||||||
public void setPodUrl(String podUrl) { this.podUrl = podUrl; }
|
|
||||||
|
|
||||||
public String getIntegrationType() { return integrationType; }
|
|
||||||
public void setIntegrationType(String integrationType) { this.integrationType = integrationType; }
|
|
||||||
|
|
||||||
public String getMciServiceId() { return mciServiceId; }
|
|
||||||
public void setMciServiceId(String mciServiceId) { this.mciServiceId = mciServiceId; }
|
|
||||||
|
|
||||||
private boolean visible = true;
|
private boolean visible = true;
|
||||||
|
|
||||||
public boolean isVisible() { return visible; }
|
|
||||||
public void setVisible(boolean visible) { this.visible = visible; }
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user