Issue fixed to remove mutable methods in interface
Change-Id: I8f2f846c5a5eb5e63045b0641dea37b68935c08f
diff --git a/pcep/api/src/main/java/org/onosproject/pcep/controller/PcepPacketStats.java b/pcep/api/src/main/java/org/onosproject/pcep/controller/PcepPacketStats.java
old mode 100755
new mode 100644
index 60126a1..d00cd5a
--- a/pcep/api/src/main/java/org/onosproject/pcep/controller/PcepPacketStats.java
+++ b/pcep/api/src/main/java/org/onosproject/pcep/controller/PcepPacketStats.java
@@ -25,55 +25,26 @@
*
* @return int value of no of packets sent
*/
- public int outPacketCount();
+ int outPacketCount();
/**
* Returns the count for no of packets received.
*
* @return int value of no of packets sent
*/
- public int inPacketCount();
+ int inPacketCount();
/**
* Returns the count for no of wrong packets received.
*
* @return int value of no of wrong packets received
*/
- public int wrongPacketCount();
-
- /**
- * Increments the received packet counter.
- */
- public void addInPacket();
-
- /**
- * Increments the sent packet counter.
- */
- public void addOutPacket();
-
- /**
- * Increments the sent packet counter by specified value.
- * @param value of no of packets sent
- */
- public void addOutPacket(int value);
-
- /**
- * Increments the wrong packet counter.
- */
- public void addWrongPacket();
+ int wrongPacketCount();
/**
* Returns the time value.
*
* @return long value of time
*/
- public long getTime();
-
- /**
- * Sets the time value.
- *
- * @param time long value of time
- */
- public void setTime(long time);
-
+ long getTime();
}