
com.capitalone.dashboard.model.CollectorItemConfigHistory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.model;
import org.bson.types.ObjectId;
import org.springframework.data.mongodb.core.mapping.Document;
import java.util.HashMap;
import java.util.Map;
@Document(collection="collitem_cfghist")
public class CollectorItemConfigHistory extends BaseModel {
private ObjectId collectorItemId;
private long timestamp;
private ConfigHistOperationType operation;
private String userName;
private String userID;
private Map changeMap = new HashMap<>();
public ObjectId getCollectorItemId() {
return collectorItemId;
}
public void setCollectorItemId(ObjectId collectorItemId) {
this.collectorItemId = collectorItemId;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
public ConfigHistOperationType getOperation() {
return operation;
}
public void setOperation(ConfigHistOperationType operation) {
this.operation = operation;
}
public Map getChangeMap() {
return changeMap;
}
public void setChangeMap(Map changeMap) {
this.changeMap = changeMap;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserID() {
return userID;
}
public void setUserID(String userID) {
this.userID = userID;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy