
com.amazonaws.services.iot.model.ActiveViolation Maven / Gradle / Ivy
/*
* Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.iot.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Information about an active Device Defender security profile behavior violation.
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ActiveViolation implements Serializable, Cloneable, StructuredPojo {
/**
*
* The ID of the active violation.
*
*/
private String violationId;
/**
*
* The name of the thing responsible for the active violation.
*
*/
private String thingName;
/**
*
* The security profile whose behavior is in violation.
*
*/
private String securityProfileName;
/**
*
* The behavior which is being violated.
*
*/
private Behavior behavior;
/**
*
* The value of the metric (the measurement) which caused the most recent violation.
*
*/
private MetricValue lastViolationValue;
/**
*
* The time the most recent violation occurred.
*
*/
private java.util.Date lastViolationTime;
/**
*
* The time the violation started.
*
*/
private java.util.Date violationStartTime;
/**
*
* The ID of the active violation.
*
*
* @param violationId
* The ID of the active violation.
*/
public void setViolationId(String violationId) {
this.violationId = violationId;
}
/**
*
* The ID of the active violation.
*
*
* @return The ID of the active violation.
*/
public String getViolationId() {
return this.violationId;
}
/**
*
* The ID of the active violation.
*
*
* @param violationId
* The ID of the active violation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ActiveViolation withViolationId(String violationId) {
setViolationId(violationId);
return this;
}
/**
*
* The name of the thing responsible for the active violation.
*
*
* @param thingName
* The name of the thing responsible for the active violation.
*/
public void setThingName(String thingName) {
this.thingName = thingName;
}
/**
*
* The name of the thing responsible for the active violation.
*
*
* @return The name of the thing responsible for the active violation.
*/
public String getThingName() {
return this.thingName;
}
/**
*
* The name of the thing responsible for the active violation.
*
*
* @param thingName
* The name of the thing responsible for the active violation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ActiveViolation withThingName(String thingName) {
setThingName(thingName);
return this;
}
/**
*
* The security profile whose behavior is in violation.
*
*
* @param securityProfileName
* The security profile whose behavior is in violation.
*/
public void setSecurityProfileName(String securityProfileName) {
this.securityProfileName = securityProfileName;
}
/**
*
* The security profile whose behavior is in violation.
*
*
* @return The security profile whose behavior is in violation.
*/
public String getSecurityProfileName() {
return this.securityProfileName;
}
/**
*
* The security profile whose behavior is in violation.
*
*
* @param securityProfileName
* The security profile whose behavior is in violation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ActiveViolation withSecurityProfileName(String securityProfileName) {
setSecurityProfileName(securityProfileName);
return this;
}
/**
*
* The behavior which is being violated.
*
*
* @param behavior
* The behavior which is being violated.
*/
public void setBehavior(Behavior behavior) {
this.behavior = behavior;
}
/**
*
* The behavior which is being violated.
*
*
* @return The behavior which is being violated.
*/
public Behavior getBehavior() {
return this.behavior;
}
/**
*
* The behavior which is being violated.
*
*
* @param behavior
* The behavior which is being violated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ActiveViolation withBehavior(Behavior behavior) {
setBehavior(behavior);
return this;
}
/**
*
* The value of the metric (the measurement) which caused the most recent violation.
*
*
* @param lastViolationValue
* The value of the metric (the measurement) which caused the most recent violation.
*/
public void setLastViolationValue(MetricValue lastViolationValue) {
this.lastViolationValue = lastViolationValue;
}
/**
*
* The value of the metric (the measurement) which caused the most recent violation.
*
*
* @return The value of the metric (the measurement) which caused the most recent violation.
*/
public MetricValue getLastViolationValue() {
return this.lastViolationValue;
}
/**
*
* The value of the metric (the measurement) which caused the most recent violation.
*
*
* @param lastViolationValue
* The value of the metric (the measurement) which caused the most recent violation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ActiveViolation withLastViolationValue(MetricValue lastViolationValue) {
setLastViolationValue(lastViolationValue);
return this;
}
/**
*
* The time the most recent violation occurred.
*
*
* @param lastViolationTime
* The time the most recent violation occurred.
*/
public void setLastViolationTime(java.util.Date lastViolationTime) {
this.lastViolationTime = lastViolationTime;
}
/**
*
* The time the most recent violation occurred.
*
*
* @return The time the most recent violation occurred.
*/
public java.util.Date getLastViolationTime() {
return this.lastViolationTime;
}
/**
*
* The time the most recent violation occurred.
*
*
* @param lastViolationTime
* The time the most recent violation occurred.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ActiveViolation withLastViolationTime(java.util.Date lastViolationTime) {
setLastViolationTime(lastViolationTime);
return this;
}
/**
*
* The time the violation started.
*
*
* @param violationStartTime
* The time the violation started.
*/
public void setViolationStartTime(java.util.Date violationStartTime) {
this.violationStartTime = violationStartTime;
}
/**
*
* The time the violation started.
*
*
* @return The time the violation started.
*/
public java.util.Date getViolationStartTime() {
return this.violationStartTime;
}
/**
*
* The time the violation started.
*
*
* @param violationStartTime
* The time the violation started.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ActiveViolation withViolationStartTime(java.util.Date violationStartTime) {
setViolationStartTime(violationStartTime);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getViolationId() != null)
sb.append("ViolationId: ").append(getViolationId()).append(",");
if (getThingName() != null)
sb.append("ThingName: ").append(getThingName()).append(",");
if (getSecurityProfileName() != null)
sb.append("SecurityProfileName: ").append(getSecurityProfileName()).append(",");
if (getBehavior() != null)
sb.append("Behavior: ").append(getBehavior()).append(",");
if (getLastViolationValue() != null)
sb.append("LastViolationValue: ").append(getLastViolationValue()).append(",");
if (getLastViolationTime() != null)
sb.append("LastViolationTime: ").append(getLastViolationTime()).append(",");
if (getViolationStartTime() != null)
sb.append("ViolationStartTime: ").append(getViolationStartTime());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ActiveViolation == false)
return false;
ActiveViolation other = (ActiveViolation) obj;
if (other.getViolationId() == null ^ this.getViolationId() == null)
return false;
if (other.getViolationId() != null && other.getViolationId().equals(this.getViolationId()) == false)
return false;
if (other.getThingName() == null ^ this.getThingName() == null)
return false;
if (other.getThingName() != null && other.getThingName().equals(this.getThingName()) == false)
return false;
if (other.getSecurityProfileName() == null ^ this.getSecurityProfileName() == null)
return false;
if (other.getSecurityProfileName() != null && other.getSecurityProfileName().equals(this.getSecurityProfileName()) == false)
return false;
if (other.getBehavior() == null ^ this.getBehavior() == null)
return false;
if (other.getBehavior() != null && other.getBehavior().equals(this.getBehavior()) == false)
return false;
if (other.getLastViolationValue() == null ^ this.getLastViolationValue() == null)
return false;
if (other.getLastViolationValue() != null && other.getLastViolationValue().equals(this.getLastViolationValue()) == false)
return false;
if (other.getLastViolationTime() == null ^ this.getLastViolationTime() == null)
return false;
if (other.getLastViolationTime() != null && other.getLastViolationTime().equals(this.getLastViolationTime()) == false)
return false;
if (other.getViolationStartTime() == null ^ this.getViolationStartTime() == null)
return false;
if (other.getViolationStartTime() != null && other.getViolationStartTime().equals(this.getViolationStartTime()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getViolationId() == null) ? 0 : getViolationId().hashCode());
hashCode = prime * hashCode + ((getThingName() == null) ? 0 : getThingName().hashCode());
hashCode = prime * hashCode + ((getSecurityProfileName() == null) ? 0 : getSecurityProfileName().hashCode());
hashCode = prime * hashCode + ((getBehavior() == null) ? 0 : getBehavior().hashCode());
hashCode = prime * hashCode + ((getLastViolationValue() == null) ? 0 : getLastViolationValue().hashCode());
hashCode = prime * hashCode + ((getLastViolationTime() == null) ? 0 : getLastViolationTime().hashCode());
hashCode = prime * hashCode + ((getViolationStartTime() == null) ? 0 : getViolationStartTime().hashCode());
return hashCode;
}
@Override
public ActiveViolation clone() {
try {
return (ActiveViolation) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.iot.model.transform.ActiveViolationMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}