Fix missing javadoc strings 07/36907/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 30 Mar 2016 15:20:13 +0000 (11:20 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 30 Mar 2016 18:11:13 +0000 (14:11 -0400)
Change-Id: I07b022b681c343ef38e8ec14a5e655dabd5306ca
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
pcep/impl/src/test/java/org/opendaylight/protocol/pcep/impl/FiniteStateMachineTest.java
programming/spi/src/main/java/org/opendaylight/bgpcep/programming/spi/Instruction.java

index 6e50e59024a9ef1713efa2930c85da2cf3f9ad74..778b4d0dde81e0a42eb3d92930553846f58bc8da 100644 (file)
@@ -47,7 +47,7 @@ public class FiniteStateMachineTest extends AbstractPCEPSessionTest {
      * Both PCEs accept session characteristics. Also tests KeepAliveTimer and error message and when pce attempts to
      * establish pce session for the 2nd time.
      *
-     * @throws Exception
+     * @throws Exception exception
      */
     @Test
     public void testSessionCharsAccBoth() throws Exception {
@@ -84,7 +84,7 @@ public class FiniteStateMachineTest extends AbstractPCEPSessionTest {
     /**
      * As Tls is not configured properly, PCE will send error PCEPErrors.NOT_POSSIBLE_WITHOUT_TLS
      *
-     * @throws Exception
+     * @throws Exception exception
      */
     @Test
     public void testFailedToEstablishTLS() throws Exception {
@@ -103,8 +103,6 @@ public class FiniteStateMachineTest extends AbstractPCEPSessionTest {
 
     /**
      * As PCE does not receive expected message (StartTLS), error PCEPErrors.NON_STARTTLS_MSG_RCVD is send
-     *
-     * @throws Exception
      */
     @Test
     public void testTLSUnexpectedMessage() {
@@ -124,7 +122,7 @@ public class FiniteStateMachineTest extends AbstractPCEPSessionTest {
     /**
      * Mock PCE does not accept session characteristics the first time.
      *
-     * @throws Exception
+     * @throws Exception exception
      */
     @Test
     public void testSessionCharsAccMe() throws Exception {
@@ -145,7 +143,7 @@ public class FiniteStateMachineTest extends AbstractPCEPSessionTest {
     /**
      * Sending different PCEP Message than Open in session establishment phase.
      *
-     * @throws Exception
+     * @throws Exception exception
      */
     @Test
     public void testErrorOneOne() throws Exception {
@@ -165,7 +163,7 @@ public class FiniteStateMachineTest extends AbstractPCEPSessionTest {
     /**
      * KeepWaitTimer expired.
      *
-     * @throws Exception
+     * @throws Exception exception
      */
     @Test
     public void testErrorOneSeven() throws Exception {
@@ -188,7 +186,7 @@ public class FiniteStateMachineTest extends AbstractPCEPSessionTest {
     /**
      * OpenWait timer expired.
      *
-     * @throws InterruptedException
+     * @throws InterruptedException exception
      */
     @Test
     @Ignore
index 56d57ed11218cfbd9eb686066d440b7785d0b996..30a058466fc783a14e25ccf7a717275c1814fd1b 100644 (file)
@@ -30,7 +30,7 @@ public interface Instruction {
      *
      * @param details Details which execution is held up
      * @return Indication whether the instruction execution should proceed. If this method returns false, all subsequent
-     *         calls to this method as well as {@link checkedExecutionStart()} will return false.
+     *         calls to this method as well as {@link #checkedExecutionStart()} will return false.
      */
     boolean executionHeldUp(Details details);