aboutsummaryrefslogtreecommitdiffstats
path: root/src/gen/java/io/swagger/model/DCAEServiceType.java
blob: 55986048ddae4514f462b0ab326d78a48ba7953f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*-
 * ============LICENSE_START=======================================================
 * dcae-inventory
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. 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.
 * 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.
 * ============LICENSE_END=========================================================
 */

package io.swagger.model;

import java.util.Objects;

import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModelProperty;
import org.hibernate.validator.constraints.NotEmpty;

import javax.ws.rs.core.Link;
import java.util.Date;


@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaJerseyServerCodegen", date = "2016-04-18T20:16:22.119Z")
public final class DCAEServiceType extends DCAEServiceTypeRequest {

    @NotEmpty
    private String typeId = null;
    @NotEmpty
    private Link selfLink = null;
    @NotEmpty
    private Date created = null;
    private Date deactivated = null;


    @ApiModelProperty(required = true, value = "Unique identifier for this DCAE service type")
    @JsonProperty("typeId")
    public String getTypeId() {
        return typeId;
    }

    public void setTypeId(String typeId) {
        this.typeId = typeId;
    }


    @ApiModelProperty(required = true, value = "Link to self where the Link.title is typeName")
    @JsonProperty("selfLink")
    public Link getSelfLink() {
        return selfLink;
    }

    public void setSelfLink(Link selfLink) {
        this.selfLink = selfLink;
    }


    @ApiModelProperty(required = true, value = "Created timestamp for this DCAE service type in epoch time")
    @JsonProperty("created")
    public Date getCreated() {
        return created;
    }

    public void setCreated(Date created) {
        this.created = created;
    }


    @ApiModelProperty(required = false, value = "Deactivated timestamp for this DCAE service type in epoch time")
    @JsonProperty("deactivated")
    public Date getDeactivated() {
        return deactivated;
    }

    public void setDeactivated(Date deactivated) {
        this.deactivated = deactivated;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        DCAEServiceType dCAEServiceType = (DCAEServiceType) o;
        return Objects.equals(typeId, dCAEServiceType.typeId) &&
                Objects.equals(selfLink, dCAEServiceType.selfLink) &&
                Objects.equals(created, dCAEServiceType.created) &&
                Objects.equals(deactivated, dCAEServiceType.deactivated) &&
                super.equals((DCAEServiceTypeRequest) o);
    }

    @Override
    public int hashCode() {
        return Objects.hash(typeId, selfLink, created, deactivated) + super.hashCode();
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class DCAEServiceType {\n");

        sb.append("    typeId: ").append(toIndentedString(typeId)).append("\n");
        sb.append("    selfLink: ").append(toIndentedString(selfLink)).append("\n");
        sb.append("    created: ").append(toIndentedString(created)).append("\n");
        sb.append("    deactivated: ").append(toIndentedString(deactivated)).append("\n");
        sb.append(super.toString()).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(Object o) {
        if (o == null) {
            return "null";
        }
        return o.toString().replace("\n", "\n    ");
    }
}