aboutsummaryrefslogtreecommitdiffstats
path: root/mso-catalog-db/src/main/java/org/openecomp/mso/db/catalog/beans/VfModuleCustomization.java
blob: 5b3dec47001fd39124ed626105959981a2bb822b (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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * 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 org.openecomp.mso.db.catalog.beans;

import java.io.Serializable;
import java.sql.Timestamp;

import com.openpojo.business.annotation.BusinessKey;

public class VfModuleCustomization implements Serializable {
	
	@BusinessKey
	private String modelCustomizationUuid = null;
	@BusinessKey
	private String vfModuleModelUuid = null;
	private String label = null;
    private Integer minInstances;
    private Integer maxInstances;
    private Integer initialCount;
    private Integer availabilityZoneCount;
    private String heatEnvironmentArtifactUuid = null;
    private String volEnvironmentArtifactUuid = null;
    private Timestamp created = null;
    private VfModule vfModule;
    public static final long serialVersionUID = -1322322139926390329L;

	public VfModuleCustomization() {
		super();
	}
	
	public String getModelCustomizationUuid() {
		return this.modelCustomizationUuid;
	}
	public void setModelCustomizationUuid(String modelCustomizationUuid) {
		this.modelCustomizationUuid = modelCustomizationUuid;
	}
	public String getVfModuleModelUuid() {
		return this.vfModuleModelUuid;
	}
	public void setVfModuleModelUuid(String vfModuleModelUuid) {
		this.vfModuleModelUuid = vfModuleModelUuid;
	}
	public String getHeatEnvironmentArtifactUuid() {
		return this.heatEnvironmentArtifactUuid;
	}
	public void setHeatEnvironmentArtifactUuid(String heatEnvironmentArtifactUuid) {
		this.heatEnvironmentArtifactUuid = heatEnvironmentArtifactUuid;
	}
	public String getVolEnvironmentArtifactUuid() {
		return this.volEnvironmentArtifactUuid;
	}
	public void setVolEnvironmentArtifactUuid(String volEnvironmentArtifactUuid) {
		this.volEnvironmentArtifactUuid = volEnvironmentArtifactUuid;
	}
	
	public Integer getMinInstances() {
		return this.minInstances;
	}
	public void setMinInstances(Integer minInstances) {
		this.minInstances = minInstances;
	}
	public Integer getMaxInstances() {
		return this.maxInstances;
	}
	public void setMaxInstances(Integer maxInstances) {
		this.maxInstances = maxInstances;
	}
	public Integer getInitialCount() {
		return this.initialCount;
	}
	public void setInitialCount(Integer initialCount) {
		this.initialCount = initialCount;
	}
	public Integer getAvailabilityZoneCount() {
		return this.availabilityZoneCount;
	}
	public void setAvailabilityZoneCount(Integer availabilityZoneCount) {
		this.availabilityZoneCount = availabilityZoneCount;
	}
	public Timestamp getCreated() {
		return created;
	}
	public void setCreated(Timestamp created) {
		this.created = created;
	}
	public String getLabel() {
		return this.label;
	}
	public void setLabel(String label) {
		this.label = label;
	}
	public VfModule getVfModule() {
		return this.vfModule;
	}
	public void setVfModule(VfModule vfModule) {
		this.vfModule = vfModule;
	}

	@Override
	public String toString() {
		return "modelCustomizationUuid=" + this.modelCustomizationUuid +
			"vfModuleModelUuid=" + this.vfModuleModelUuid +
			"label=" + this.label +
			"initalCount=" + this.initialCount +
			"minInstances=" + this.minInstances +
			"maxInstances=" + this.maxInstances +
			"availabilityZoneCount=" + this.availabilityZoneCount +
			"heatEnvironmentArtifactUuid=" + this.heatEnvironmentArtifactUuid +
			"volEnvironmentArtifactUuid=" + this.volEnvironmentArtifactUuid +
			"created=" + this.created;
	}

	@Override
    public boolean equals (Object o) {
        if (!(o instanceof VfModuleCustomization)) {
            return false;
        }
        if (this == o) {
            return true;
        }
        VfModuleCustomization vfmc = (VfModuleCustomization) o;
        if (vfmc.getModelCustomizationUuid().equals(this.getModelCustomizationUuid()) && vfmc.getVfModuleModelUuid().equals(this.getVfModuleModelUuid())) {
            return true;
        }
        return false;
    }

    @Override
    public int hashCode () {
        // hash code does not have to be a unique result - only that two objects that should be treated as equal
        // return the same value. so this should work.
        int result = 0;
        result = (this.modelCustomizationUuid != null ? this.modelCustomizationUuid.hashCode() : 0) + (this.vfModuleModelUuid != null ? this.vfModuleModelUuid.hashCode() : 0);
        return result;
    }

}