summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/aai/sparky/synchronizer/task/CollectEntitySelfLinkTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/aai/sparky/synchronizer/task/CollectEntitySelfLinkTask.java')
-rw-r--r--src/main/java/org/onap/aai/sparky/synchronizer/task/CollectEntitySelfLinkTask.java104
1 files changed, 0 insertions, 104 deletions
diff --git a/src/main/java/org/onap/aai/sparky/synchronizer/task/CollectEntitySelfLinkTask.java b/src/main/java/org/onap/aai/sparky/synchronizer/task/CollectEntitySelfLinkTask.java
deleted file mode 100644
index b12a1d9..0000000
--- a/src/main/java/org/onap/aai/sparky/synchronizer/task/CollectEntitySelfLinkTask.java
+++ /dev/null
@@ -1,104 +0,0 @@
-/**
- * ============LICENSE_START=======================================================
- * org.onap.aai
- * ================================================================================
- * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
- * Copyright © 2017 Amdocs
- * ================================================================================
- * 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.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- *
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.
- */
-package org.onap.aai.sparky.synchronizer.task;
-
-import java.util.function.Supplier;
-
-import org.onap.aai.sparky.dal.NetworkTransaction;
-import org.onap.aai.sparky.dal.aai.ActiveInventoryDataProvider;
-import org.onap.aai.sparky.dal.rest.OperationResult;
-
-/**
- * The Class CollectEntitySelfLinkTask.
- */
-public class CollectEntitySelfLinkTask implements Supplier<NetworkTransaction> {
-
- private NetworkTransaction txn;
-
- private ActiveInventoryDataProvider provider;
-
- /**
- * Instantiates a new collect entity self link task.
- *
- * @param txn the txn
- * @param provider the provider
- */
- public CollectEntitySelfLinkTask(NetworkTransaction txn, ActiveInventoryDataProvider provider) {
- this.txn = txn;
- this.provider = provider;
- }
-
- /*
- * (non-Javadoc)
- *
- * @see java.util.function.Supplier#get()
- */
- @Override
- public NetworkTransaction get() {
-
- txn.setTaskAgeInMs();
-
- long startTimeInMs = System.currentTimeMillis();
- OperationResult result = null;
- try {
- result = provider.queryActiveInventoryWithRetries(txn.getLink(), "application/json", 5);
- } catch (Exception exc) {
- result = new OperationResult(500,
- "Caught an exception while trying to resolve link = " + exc.getMessage());
- } finally {
- result.setResponseTimeInMs(System.currentTimeMillis() - startTimeInMs);
- txn.setOperationResult(result);
- }
-
- return txn;
- }
-
- /**
- * @return the txn
- */
- public NetworkTransaction getTxn() {
- return txn;
- }
-
- /**
- * @param txn the txn to set
- */
- public void setTxn(NetworkTransaction txn) {
- this.txn = txn;
- }
-
- /**
- * @return the provider
- */
- public ActiveInventoryDataProvider getProvider() {
- return provider;
- }
-
- /**
- * @param provider the provider to set
- */
- public void setProvider(ActiveInventoryDataProvider provider) {
- this.provider = provider;
- }
-
-}