1 package org.openecomp.sdc.generator.datatypes.tosca;
3 @SuppressWarnings("CheckStyle")
4 public class LicenseFlavor {
6 String feature_group_uuid;
8 public String getFeature_group_uuid() {
9 return feature_group_uuid;
12 public void setFeature_group_uuid(String feature_group_uuid) {
13 this.feature_group_uuid = feature_group_uuid;
17 public String toString() {
18 return "LicenseFlavor{"
19 + "feature_group_uuid='" + feature_group_uuid + '\''
24 public boolean equals(Object obj) {
27 if (obj != null && getClass() != obj.getClass())
29 LicenseFlavor other = (LicenseFlavor) obj;
31 if (this.feature_group_uuid == null) {
32 if (other.feature_group_uuid != null)
34 } else if (!feature_group_uuid.equals(other.feature_group_uuid))
41 public int hashCode() {
42 return feature_group_uuid != null ? feature_group_uuid.hashCode() : 0;