odata.msgraph.client.security.enums.EvidenceRole Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-client-msgraph Show documentation
Show all versions of odata-client-msgraph Show documentation
Java client for use with the Microsoft Graph v1.0 endpoint
package odata.msgraph.client.security.enums;
import com.fasterxml.jackson.annotation.JsonEnumDefaultValue;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.davidmoten.odata.client.Enum;
import java.lang.Override;
import java.lang.String;
public enum EvidenceRole implements Enum {
@JsonProperty("unknown")
UNKNOWN("unknown", "0"),
@JsonProperty("contextual")
CONTEXTUAL("contextual", "1"),
@JsonProperty("scanned")
SCANNED("scanned", "2"),
@JsonProperty("source")
SOURCE("source", "3"),
@JsonProperty("destination")
DESTINATION("destination", "4"),
@JsonProperty("created")
CREATED("created", "5"),
@JsonProperty("added")
ADDED("added", "6"),
@JsonProperty("compromised")
COMPROMISED("compromised", "7"),
@JsonProperty("edited")
EDITED("edited", "8"),
@JsonProperty("attacked")
ATTACKED("attacked", "9"),
@JsonProperty("attacker")
ATTACKER("attacker", "10"),
@JsonProperty("commandAndControl")
COMMAND_AND_CONTROL("commandAndControl", "11"),
@JsonProperty("loaded")
LOADED("loaded", "12"),
@JsonProperty("suspicious")
SUSPICIOUS("suspicious", "13"),
@JsonProperty("policyViolator")
POLICY_VIOLATOR("policyViolator", "14"),
@JsonProperty("unknownFutureValue")
@JsonEnumDefaultValue
UNKNOWN_FUTURE_VALUE("unknownFutureValue", "31");
private final String name;
private final String value;
private EvidenceRole(String name, String value) {
this.name = name;
this.value = value;
}
@Override
public String enumName() {
return name;
}
@Override
public String enumValue() {
return value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy