aboutsummaryrefslogtreecommitdiffstats
path: root/models-dao/src/main/java/org/onap/policy/models/dao/PfDaoFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'models-dao/src/main/java/org/onap/policy/models/dao/PfDaoFactory.java')
-rw-r--r--models-dao/src/main/java/org/onap/policy/models/dao/PfDaoFactory.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/models-dao/src/main/java/org/onap/policy/models/dao/PfDaoFactory.java b/models-dao/src/main/java/org/onap/policy/models/dao/PfDaoFactory.java
index 177a7f320..a4f098582 100644
--- a/models-dao/src/main/java/org/onap/policy/models/dao/PfDaoFactory.java
+++ b/models-dao/src/main/java/org/onap/policy/models/dao/PfDaoFactory.java
@@ -1,6 +1,6 @@
/*-
* ============LICENSE_START=======================================================
- * Copyright (C) 2019 Nordix Foundation.
+ * Copyright (C) 2019, 2023 Nordix Foundation.
* Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -21,8 +21,8 @@
package org.onap.policy.models.dao;
+import jakarta.ws.rs.core.Response;
import java.lang.reflect.InvocationTargetException;
-import javax.ws.rs.core.Response;
import org.onap.policy.common.utils.validation.Assertions;
import org.onap.policy.models.base.PfModelException;
import org.slf4j.Logger;
@@ -50,7 +50,7 @@ public class PfDaoFactory {
"Parameter \"daoParameters\" may not be null");
// Get the class for the DAO using reflection
- Object pfDaoObject = null;
+ Object pfDaoObject;
try {
pfDaoObject = Class.forName(daoParameters.getPluginClass()).getDeclaredConstructor().newInstance();
} catch (InstantiationException | IllegalAccessException | ClassNotFoundException | IllegalArgumentException