com.blackducksoftware.integration.hub.model.NotificationView Maven / Gradle / Ivy
/**
* hub-model-common
*
* Copyright (C) 2017 Black Duck Software, Inc.
* http://www.blackducksoftware.com/
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License 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.
*/
/*
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
*
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.blackducksoftware.integration.hub.model;
import java.util.Objects;
import com.blackducksoftware.integration.hub.model.HubView;
import com.blackducksoftware.integration.hub.model.MetadataView;
import com.google.gson.annotations.SerializedName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.joda.time.DateTime;
/**
* NotificationView
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2017-02-02T14:22:10.992-05:00")
public class NotificationView extends HubView {
@SerializedName("contentType")
private String contentType = null;
@SerializedName("createdAt")
private DateTime createdAt = null;
/**
* Gets or Sets type
*/
public enum TypeEnum {
@SerializedName("POLICY_OVERRIDE")
POLICY_OVERRIDE("POLICY_OVERRIDE"),
@SerializedName("RULE_VIOLATION")
RULE_VIOLATION("RULE_VIOLATION"),
@SerializedName("VULNERABILITY")
VULNERABILITY("VULNERABILITY"),
@SerializedName("LICENSE_LIMIT")
LICENSE_LIMIT("LICENSE_LIMIT"),
@SerializedName("RULE_VIOLATION_CLEARED")
RULE_VIOLATION_CLEARED("RULE_VIOLATION_CLEARED");
private String value;
TypeEnum(String value) {
this.value = value;
}
@Override
public String toString() {
return String.valueOf(value);
}
}
@SerializedName("type")
private TypeEnum type = null;
public NotificationView contentType(String contentType) {
this.contentType = contentType;
return this;
}
/**
* Get contentType
* @return contentType
**/
@ApiModelProperty(example = "null", value = "")
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
public NotificationView createdAt(DateTime createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Get createdAt
* @return createdAt
**/
@ApiModelProperty(example = "null", value = "")
public DateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(DateTime createdAt) {
this.createdAt = createdAt;
}
public NotificationView type(TypeEnum type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
**/
@ApiModelProperty(example = "null", value = "")
public TypeEnum getType() {
return type;
}
public void setType(TypeEnum type) {
this.type = type;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
NotificationView notificationView = (NotificationView) o;
return Objects.equals(this.contentType, notificationView.contentType) &&
Objects.equals(this.createdAt, notificationView.createdAt) &&
Objects.equals(this.type, notificationView.type) &&
super.equals(o);
}
@Override
public int hashCode() {
return Objects.hash(contentType, createdAt, type, super.hashCode());
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class NotificationView {\n");
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
sb.append(" contentType: ").append(toIndentedString(contentType)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}