Add integration test for extending API: Get Module Definitions
[cps.git] / cps-service / src / main / java / org / onap / cps / spi / model / ModuleDefinition.java
index d7a5b38..909b7bc 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  ============LICENSE_START=======================================================
- *  Copyright (C) 2022 Nordix Foundation
+ *  Copyright (C) 2022-2024 Nordix Foundation
  *  ================================================================================
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
 
 package org.onap.cps.spi.model;
 
+import lombok.EqualsAndHashCode;
 import lombok.Getter;
 import lombok.Setter;
+import lombok.ToString;
 
 @Getter
 @Setter
+@EqualsAndHashCode(callSuper = true)
+@ToString
 public class ModuleDefinition extends ModuleReference {
 
     private static final long serialVersionUID = -6591435720836327732L;