BGPCEP-704: Rework Programming
[bgpcep.git] / programming / impl / src / main / java / org / opendaylight / bgpcep / programming / impl / IntructionDeployer.java
diff --git a/programming/impl/src/main/java/org/opendaylight/bgpcep/programming/impl/IntructionDeployer.java b/programming/impl/src/main/java/org/opendaylight/bgpcep/programming/impl/IntructionDeployer.java
deleted file mode 100644 (file)
index 029cfb7..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.bgpcep.programming.impl;
-
-/**
- * Instruction Scheduler Deployer
- */
-public interface IntructionDeployer {
-    /**
-     * Write instruction configuration on DS
-     * @param instructionId Instruction Scheduler Id
-     */
-    void writeConfiguration(String instructionId);
-
-    /**
-     * Remove instruction configuration on DS
-     * @param instructionId Instruction Scheduler Id
-     */
-    void removeConfiguration(String instructionId);
-}