Java 17 Upgrade
[policy/models.git] / models-base / src / test / java / org / onap / policy / models / base / testconcepts / DummyPfConceptKeySub.java
index da18cba..b204895 100644 (file)
@@ -1,6 +1,7 @@
 /*-
  * ============LICENSE_START=======================================================
- *  Copyright (C) 2019 Nordix Foundation.
+ *  Copyright (C) 2019, 2023 Nordix Foundation.
+ *  Modifications Copyright (C) 2019 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.
 
 package org.onap.policy.models.base.testconcepts;
 
-import javax.ws.rs.core.Response;
-
+import jakarta.ws.rs.core.Response;
 import lombok.NonNull;
-
 import org.onap.policy.models.base.PfConceptKey;
 import org.onap.policy.models.base.PfModelRuntimeException;
 
@@ -50,4 +49,13 @@ public class DummyPfConceptKeySub extends PfConceptKey {
     public DummyPfConceptKeySub(@NonNull final PfConceptKey usedKey) {
         super(usedKey);
     }
+
+    /**
+     * Copy constructor.
+     *
+     * @param source object to be copied
+     */
+    public DummyPfConceptKeySub(@NonNull final DummyPfConceptKeySub source) {
+        super(source);
+    }
 }