com.capitalone.dashboard.request.GenericCollectorItemCreateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.request;
import javax.validation.constraints.NotNull;
/**
* A request to create a Generic Collector Item.
*
*/
public class GenericCollectorItemCreateRequest {
private String buildId;
@NotNull
private String relatedCollectorItemId;
@NotNull
private String toolName;
@NotNull
private String rawData;
@NotNull
private String source;
private String pattern;
public String getBuildId() {
return buildId;
}
public void setBuildId(String buildId) {
this.buildId = buildId;
}
public String getToolName() {
return toolName;
}
public void setToolName(String toolName) {
this.toolName = toolName;
}
public String getRawData() {
return rawData;
}
public void setRawData(String rawData) {
this.rawData = rawData;
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
public String getRelatedCollectorItemId() {
return relatedCollectorItemId;
}
public void setRelatedCollectorItemId(String relatedCollectorItemId) {
this.relatedCollectorItemId = relatedCollectorItemId;
}
public String getPattern() {
return pattern;
}
public void setPattern(String pattern) {
this.pattern = pattern;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy