summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/action/types/OpenEcompComponent.java
diff options
context:
space:
mode:
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/action/types/OpenEcompComponent.java')
-rw-r--r--openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/action/types/OpenEcompComponent.java139
1 files changed, 69 insertions, 70 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/action/types/OpenEcompComponent.java b/openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/action/types/OpenEcompComponent.java
index bf3f0c54f9..1858833d82 100644
--- a/openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/action/types/OpenEcompComponent.java
+++ b/openecomp-be/lib/openecomp-sdc-action-lib/openecomp-sdc-action-api/src/main/java/org/openecomp/sdc/action/types/OpenEcompComponent.java
@@ -7,9 +7,9 @@
* 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.
@@ -17,88 +17,87 @@
* limitations under the License.
* ============LICENSE_END=========================================================
*/
-
package org.openecomp.sdc.action.types;
import org.openecomp.sdc.action.dao.types.OpenEcompComponentEntity;
public class OpenEcompComponent {
- private String id;
- private String name;
-
- public OpenEcompComponent() {
- //Default constructor
- }
-
- public OpenEcompComponent(String name, String id) {
- this.name = name;
- this.id = id;
- }
-
- public String getId() {
- return id;
- }
+ private String id;
+ private String name;
- public void setId(String id) {
- this.id = id;
- }
-
- public String getName() {
- return name;
- }
+ public OpenEcompComponent() {
+ //Default constructor
+ }
- public void setName(String name) {
- this.name = name;
- }
+ public OpenEcompComponent(String name, String id) {
+ this.name = name;
+ this.id = id;
+ }
- /**
- * To entity OPENECOMP component entity.
- *
- * @return the OPENECOMP component entity
- */
- public OpenEcompComponentEntity toEntity() {
- OpenEcompComponentEntity destination = new OpenEcompComponentEntity();
- destination.setId(this.getId());
- destination.setName(this.getName());
- return destination;
- }
+ public String getId() {
+ return id;
+ }
- @Override
- public int hashCode() {
- final int prime = 31;
- int result = 1;
- result = prime * result + ((id == null) ? 0 : id.hashCode());
- result = prime * result + ((name == null) ? 0 : name.hashCode());
- return result;
- }
+ public void setId(String id) {
+ this.id = id;
+ }
- @Override
- public boolean equals(Object object) {
- if (this == object) {
- return true;
+ public String getName() {
+ return name;
}
- if (object == null) {
- return false;
+
+ public void setName(String name) {
+ this.name = name;
}
- if (this.getClass() != object.getClass()) {
- return false;
+
+ /**
+ * To entity OPENECOMP component entity.
+ *
+ * @return the OPENECOMP component entity
+ */
+ public OpenEcompComponentEntity toEntity() {
+ OpenEcompComponentEntity destination = new OpenEcompComponentEntity();
+ destination.setId(this.getId());
+ destination.setName(this.getName());
+ return destination;
}
- OpenEcompComponent obj = (OpenEcompComponent) object;
- if (id == null) {
- if (obj.id != null) {
- return false;
- }
- } else if (!id.equals(obj.id)) {
- return false;
+
+ @Override
+ public int hashCode() {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((id == null) ? 0 : id.hashCode());
+ result = prime * result + ((name == null) ? 0 : name.hashCode());
+ return result;
}
- if (name == null) {
- if (obj.name != null) {
- return false;
- }
- } else if (!name.equals(obj.name)) {
- return false;
+
+ @Override
+ public boolean equals(Object object) {
+ if (this == object) {
+ return true;
+ }
+ if (object == null) {
+ return false;
+ }
+ if (this.getClass() != object.getClass()) {
+ return false;
+ }
+ OpenEcompComponent obj = (OpenEcompComponent) object;
+ if (id == null) {
+ if (obj.id != null) {
+ return false;
+ }
+ } else if (!id.equals(obj.id)) {
+ return false;
+ }
+ if (name == null) {
+ if (obj.name != null) {
+ return false;
+ }
+ } else if (!name.equals(obj.name)) {
+ return false;
+ }
+ return true;
}
- return true;
- }
}