io.github.algomaster99.terminator.commons.cyclonedx.Copyright Maven / Gradle / Ivy
package io.github.algomaster99.terminator.commons.cyclonedx;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Copyright
*
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"text"
})
@Generated("jsonschema2pojo")
public class Copyright {
/**
* Copyright Text
*
*
* (Required)
*
*/
@JsonProperty("text")
private String text;
/**
* Copyright Text
*
*
* (Required)
*
*/
@JsonProperty("text")
public String getText() {
return text;
}
/**
* Copyright Text
*
*
* (Required)
*
*/
@JsonProperty("text")
public void setText(String text) {
this.text = text;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(Copyright.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("text");
sb.append('=');
sb.append(((this.text == null)?"":this.text));
sb.append(',');
if (sb.charAt((sb.length()- 1)) == ',') {
sb.setCharAt((sb.length()- 1), ']');
} else {
sb.append(']');
}
return sb.toString();
}
@Override
public int hashCode() {
int result = 1;
result = ((result* 31)+((this.text == null)? 0 :this.text.hashCode()));
return result;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof Copyright) == false) {
return false;
}
Copyright rhs = ((Copyright) other);
return ((this.text == rhs.text)||((this.text!= null)&&this.text.equals(rhs.text)));
}
}