sunish vk
Committed by Gerrit Code Review

OSPF-API refactored based on review comments, ONOS-2738

Change-Id: I94b22fd8f9eb8e706f049348de8ce99e2e599d67
...@@ -68,25 +68,6 @@ public interface OspfController { ...@@ -68,25 +68,6 @@ public interface OspfController {
68 public void deleteConfig(List<OspfProcess> processes, String attribute); 68 public void deleteConfig(List<OspfProcess> processes, String attribute);
69 69
70 /** 70 /**
71 - * Gets string representation of area configuration parameters to be displayed after CLI command.
72 - *
73 - * @param processId process Id
74 - * @param areaId area Id
75 - * @return Area Information
76 - */
77 - public String showAreaParameters(String processId, String areaId);
78 -
79 - /**
80 - * Gets string representation of area configuration information for the given area/process.
81 - * This method will be called for CLI command.
82 - *
83 - * @param processId process id to which area belongs
84 - * @param areaId area id
85 - * @return string representation of area configuration for CLI display
86 - */
87 - List<String> showAreaConfigurations(String processId, String areaId);
88 -
89 - /**
90 * Gets the list of listeners registered for router events. 71 * Gets the list of listeners registered for router events.
91 * 72 *
92 * @return list of listeners 73 * @return list of listeners
......