com.capitalone.dashboard.model.ScanState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-audit Show documentation
Show all versions of api-audit Show documentation
Hygieia Audit Rest API Layer
package com.capitalone.dashboard.model;
public enum ScanState {
COMPLETED("Completed"),
INVALID("Invalid"),
NO_FINDINGS("No Findings");
private String state;
ScanState(String state) {
this.state = state;
}
public String getState() {
return this.state;
}
@Override
public String toString() {
return this.state;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy