Corrects various javadoc problems 72/62072/14
authorguillaume.lambert <guillaume.lambert@orange.com>
Mon, 21 Aug 2017 10:19:20 +0000 (12:19 +0200)
committerGuillaume Lambert <guillaume.lambert@orange.com>
Tue, 29 Aug 2017 12:36:22 +0000 (12:36 +0000)
- reactivates javadoc comments in servicehandler.
- fills some missing parameters in existing javadoc comments.
- removes jenkins-releng javadoc useless warnings on api and ordmodels
  generated-sources.

Change-Id: I4fab420479a5c3031c3186158378bef46c6423f6
Co-authored-by: Ahmed Triki <ahmed.triki@orange.com>
Co-authored-by: Martial COULIBALY <martial.coulibaly@gfi.fr>
Signed-off-by: guillaume.lambert <guillaume.lambert@orange.com>
24 files changed:
api/pom.xml
cli/src/main/java/org/opendaylight/transportpce/cli/api/TransportpceCliCommands.java
ordmodels/pom.xml
pom.xml
renderer/src/main/java/org/opendaylight/transportpce/renderer/mapping/PortMapping.java
renderer/src/main/java/org/opendaylight/transportpce/renderer/openroadminterface/OpenRoadmOdu4Interface.java
renderer/src/main/java/org/opendaylight/transportpce/renderer/openroadminterface/OpenRoadmOtu4Interface.java
servicehandler/src/main/java/org/opendaylight/transportpce/servicehandler/CheckCoherencyHardSoft.java
servicehandler/src/main/java/org/opendaylight/transportpce/servicehandler/LoggingFuturesCallBack.java
servicehandler/src/main/java/org/opendaylight/transportpce/servicehandler/MappingAndSendingPCRequest.java
servicehandler/src/main/java/org/opendaylight/transportpce/servicehandler/MappingAndSendingSIRequest.java
servicehandler/src/main/java/org/opendaylight/transportpce/servicehandler/MappingConstraints.java
servicehandler/src/main/java/org/opendaylight/transportpce/servicehandler/MyEndpoint.java
servicehandler/src/main/java/org/opendaylight/transportpce/servicehandler/ServicehandlerCompliancyCheck.java
servicehandler/src/main/java/org/opendaylight/transportpce/servicehandler/ServicehandlerTxRxCheck.java
servicehandler/src/main/java/org/opendaylight/transportpce/servicehandler/impl/ServicehandlerImpl.java
servicehandler/src/main/java/org/opendaylight/transportpce/servicehandler/impl/ServicehandlerProvider.java
stubpce/src/main/java/org/opendaylight/transportpce/stubpce/CompliancyCheck.java
stubpce/src/main/java/org/opendaylight/transportpce/stubpce/SendingPceRPCs.java
stubpce/src/main/java/org/opendaylight/transportpce/stubpce/impl/StubpceImpl.java
stubpce/src/main/java/org/opendaylight/transportpce/stubpce/impl/StubpceProvider.java
stubrenderer/src/main/java/org/opendaylight/transportpce/stubrenderer/SendingRendererRPCs.java
stubrenderer/src/main/java/org/opendaylight/transportpce/stubrenderer/impl/StubrendererImpl.java
stubrenderer/src/main/java/org/opendaylight/transportpce/stubrenderer/impl/StubrendererProvider.java

index 905b5f676ee2922fe6c793e03dfa980429ab6996..ca7b2bb06b2e315214e02d9d917955f815bfd463 100644 (file)
@@ -35,23 +35,44 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   <build>
      <plugins>
        <plugin>
-        <groupId>org.apache.felix</groupId>
-        <artifactId>maven-bundle-plugin</artifactId>
-        <version>3.0.1</version>
-        <extensions>true</extensions>
-        <configuration>
-          <instructions>
-            <Include-Resource>{maven-resources},target/classes/LICENSE,META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
-            <_exportcontents>
-              org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.transportpce.stubrenderer.rev170403.service.implementation.request.input,
-              org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.rev170120.service.implementation.request.input,
-              org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev161014.internal.link,
-              org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev161014.internal.links,*
-            </_exportcontents>
-          </instructions>
-        </configuration>
+         <groupId>org.apache.felix</groupId>
+         <artifactId>maven-bundle-plugin</artifactId>
+         <version>3.0.1</version>
+         <extensions>true</extensions>
+         <configuration>
+           <instructions>
+             <Include-Resource>{maven-resources},target/classes/LICENSE,META-INF/git.properties=-target/classes/META-INF/git.properties</Include-Resource>
+             <_exportcontents>
+               org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.transportpce.stubrenderer.rev170403.service.implementation.request.input,
+               org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.rev170120.service.implementation.request.input,
+               org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev161014.internal.link,
+               org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev161014.internal.links,*
+             </_exportcontents>
+           </instructions>
+         </configuration>
+       </plugin>
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-javadoc-plugin</artifactId>
+         <configuration>
+           <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
+           <excludePackageNames>*</excludePackageNames>
+         </configuration>
        </plugin>
      </plugins>
   </build>
 
+  <reporting>
+     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
+          <excludePackageNames>*</excludePackageNames>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+
 </project>
index 8a5b0f454d898c7041402db3efe501ba783cfa99..5a9561f6639e3b16c74669e1843b8ba1d0cbe57a 100644 (file)
@@ -12,6 +12,12 @@ public interface TransportpceCliCommands {
     /**
      * Define the Karaf command method signatures and the Javadoc for each.
      * Below method is just an example
+     *
+     * @param testArgument
+     *           testArgument
+     *
+     * @return
+     *           returns nothing
      */
     Object testCommand(Object testArgument);
 }
index 855c650875610e9087e4503f78f71e52f4bce4c6..55d5ebc1af909e652a0175da853803fb0c7ced8e 100644 (file)
@@ -21,6 +21,33 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   <version>0.2.0-SNAPSHOT</version>
   <packaging>bundle</packaging>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
+          <excludePackageNames>*</excludePackageNames>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
+          <excludePackageNames>*</excludePackageNames>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+
+
   <dependencies>
     <dependency>
       <groupId>org.opendaylight.netconf</groupId>
diff --git a/pom.xml b/pom.xml
index f7ecf930fd7f701e7810e109f2480d8f7735e10d..6af9b748fd14fe93a937da7fd379cd517e65ab52 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -45,6 +45,17 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
   </modules>
 
   <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
+  <!--
+      Jenkins-releng tests reports more than 600 lines of javadoc warnings on ordmodels
+      and api folders generated-sources for unclear reasons.
+      This behavior was impossible to reproduce locally.
+      The javadoc plugin build section below removes most of those useless warnings.
+      ordmodels/pom.xml and api/pom.xml have been modified similarly with a build and
+      a reporting sections to remove the rest of the warnings.
+      Note that javadoc plugins maven implementation still suffers from several bugs.
+      Tests shows that many configurations options are not correctly supported.
+      (proxy, sourceFilesExclude, etc...).
+  -->
   <build>
     <plugins>
       <plugin>
@@ -61,6 +72,14 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
           <skip>true</skip>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
+          <excludePackageNames>*</excludePackageNames>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
index d37243ea5c1afda7382b58395d1512d1ce95d874..1cd38e87da19531275c1f7cc8785d393ba88025f 100644 (file)
@@ -589,6 +589,8 @@ public class PortMapping {
      *            Unique Identifier for the node of interest.
      * @param logicalConnPoint
      *            Name of the logical point
+     * @param db
+     *            Databroker / MD-SAL data store
      *
      * @return Result Mapping object if success otherwise null.
      */
index d5ba9dcd2604b03f417f1120041ed99ba79aebc8..f3a6b927c9690ce8f930b2ba1579f9fcf99b875e 100644 (file)
@@ -30,6 +30,8 @@ public class OpenRoadmOdu4Interface extends OpenRoadmInterfaces {
     /**
      * This methods creates an ODU interface on the given termination point.
      *
+     * @param supportingOtuInterface
+     *          supporting Otu Interface
      *
      * @return Name of the interface if successful, otherwise return null.
      */
index 9881212c3369c13494237799b8a001a6c6786085..abffa1ee54cc7e19e1e785a4625c0f197c726fd5 100644 (file)
@@ -31,6 +31,8 @@ public class OpenRoadmOtu4Interface extends OpenRoadmInterfaces {
     /**
      * This methods creates an OTU interface on the given termination point.
      *
+     * @param supportOchInterface
+     *          support Och Interface
      *
      * @return Name of the interface if successful, otherwise return null.
      */
index 3ddf0e6ebff8d59ea6b6c105b17551ddbe3b23e3..5bc4333fe1d49cf26659b2a2134760aac9e69d2e 100644 (file)
@@ -13,7 +13,8 @@ import org.opendaylight.yang.gen.v1.http.org.openroadm.routing.constrains.rev161
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-/* Class to check coherency between hard & sof constraints.
+/**
+ * Class to check coherency between hard and soft constraints.
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
  *
  */
@@ -30,7 +31,8 @@ public class CheckCoherencyHardSoft {
         this.soft = soft;
     }
 
-    /*function to check coherency between hard & soft constraints.
+    /**
+     * function to check coherency between hard and soft constraints.
      * @return  <code> true </code>  if coherent
      *          <code> false </code> else
      */
index 1747b4adb910fa3ce09872584f62c5119376ed6f..ddc37bdcadf781e5073e3d8ba8f1e4b3f98341c7 100644 (file)
@@ -11,8 +11,8 @@ package org.opendaylight.transportpce.servicehandler;
 import com.google.common.util.concurrent.FutureCallback;
 import org.slf4j.Logger;
 
-/*
- * Class to log future logging from datastore actions (write & modify & delete..).
+/**
+ * Class to log future logging from datastore actions (write, modify and delete..).
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
  */
 
index df9192211f1ada7415bb25bcb7158654ae5b3f18..081ac68f6ad8f1f61dd15178eb6b285216d1b25f 100644 (file)
@@ -43,9 +43,10 @@ import org.opendaylight.yangtools.yang.common.RpcResult;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-/*
- * class for Mapping and Sending PCE requests : - path-computation-request -
- * cancel-resource-reserve.
+/**
+ * Class for Mapping and Sending PCE requests :
+ * - path-computation-request
+ * - cancelCresource-reserve.
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
  *
  */
@@ -66,7 +67,7 @@ public class MappingAndSendingPCRequest {
     private String error;
     private final ListeningExecutorService executor = MoreExecutors.listeningDecorator(Executors.newFixedThreadPool(5));
 
-    /*
+    /**
      * MappingAndSendingPCRequest Class constructor for RPC serviceReconfigure.
      *
      * @param rpcRegistry
@@ -97,7 +98,7 @@ public class MappingAndSendingPCRequest {
         setError("");
     }
 
-    /*
+    /**
      * MappingAndSendingPCRequest Class constructor for RPC
      * serviceFeasibilityCheck.
      *
@@ -123,7 +124,7 @@ public class MappingAndSendingPCRequest {
         setError("");
     }
 
-    /*
+    /**
      * MappingAndSendingPCRequest Class constructor for RPC serviceCreate.
      *
      * @param rpcRegistry
@@ -148,7 +149,7 @@ public class MappingAndSendingPCRequest {
         setError("");
     }
 
-    /*
+    /**
      * MappingAndSendingPCRequest Class constructor for modify Service in ODL
      * Datastore.
      *
@@ -172,7 +173,7 @@ public class MappingAndSendingPCRequest {
         setError("");
     }
 
-    /*
+    /**
      * Build pathComputationRequestInput or cancelResourceReserveInput with
      * input parameters (serviceReconfigureInput or serviceFeasibilityCheckInput.
      *
@@ -223,7 +224,8 @@ public class MappingAndSendingPCRequest {
                 .setServiceHandlerHeader(serviceHandlerHeader.build()).build();
     }
 
-    /* Send cancelResourceReserve request to PCE.
+    /**
+     * Send cancelResourceReserve request to PCE.
      *
      * @return CancelResourceReserveOutput data response from PCE
      */
@@ -281,7 +283,8 @@ public class MappingAndSendingPCRequest {
         this.error = error;
     }
 
-    /*Send pathComputationRequest request to PCE.
+    /**
+     * Send pathComputationRequest request to PCE.
      *
      * @return PathComputationRequestOutput data response from PCE
      */
index 18531c2516278113d383fd4e0f5c85e5c7ab2831..3e91980e21896454804bba417b8ae450a6fc835e 100644 (file)
@@ -65,7 +65,7 @@ import org.slf4j.LoggerFactory;
 
 
 
-/*
+/**
  * Class for Mapping and Sending
  * Service Implemention requests :
  * - service implementation
@@ -90,7 +90,7 @@ public class MappingAndSendingSIRequest {
     private final ListeningExecutorService executor = MoreExecutors.listeningDecorator(Executors.newFixedThreadPool(5));
 
 
-    /*
+    /**
      * MappingAndSendingSIRequest class constructor
      * for RPC serviceCreate.
      *
@@ -242,7 +242,7 @@ public class MappingAndSendingSIRequest {
         .build();
     }
 
-    /*
+    /**
      * MappingAndSendingSIRequest class constructor
      * for RPC serviceReconfigure.
      *
@@ -393,7 +393,7 @@ public class MappingAndSendingSIRequest {
     }
 
 
-    /*
+    /**
      * MappingAndSendingSIRequest class constructor
      * for RPC serviceDelete.
      *
@@ -543,7 +543,7 @@ public class MappingAndSendingSIRequest {
         LOG.info("ServiceImplementationRequestInput : " + serviceImplementationRequestInput.toString());
     }
 
-    /*
+    /**
      * Create RxDirection with Port
      * information.
      *
@@ -595,7 +595,7 @@ public class MappingAndSendingSIRequest {
         return result;
     }
 
-    /*
+    /**
      * Send serviceImplementation request to Render.
      *
      * @return ServiceImplementationRequestOutput data response from Renderer
@@ -639,7 +639,7 @@ public class MappingAndSendingSIRequest {
 
     }
 
-    /*
+    /**
      * Send serviceDelete request to Render.
      *
      * @return ServiceDeleteOutput data response from Renderer
index e61f605e5ce856d9d86c3a731974f8e238c28953..cf3a09aa9dbb858c2a6283aada79accf54fb7484 100644 (file)
@@ -29,7 +29,7 @@ import org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.routing
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-/*
+/**
  * Class for mapping
  * Hard/soft constraint from Service 1.2
  * to servicePath 1.4.
@@ -46,8 +46,7 @@ public class MappingConstraints {
     private org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface
         .routing.constraints.rev170426.routing.constraints.sp.SoftConstraints servicePathSoftConstraints;
 
-
-    /*
+    /**
      * MappingConstraints class constructor
      * for hard/soft from service 1.2.
      *
@@ -59,7 +58,7 @@ public class MappingConstraints {
         setServiceSoftConstraints(soft);
     }
 
-    /*
+    /**
      * MappingConstraints class constructor
      * for hard/soft from servicePath 1.4.
      *
@@ -74,7 +73,7 @@ public class MappingConstraints {
         setServicePathSoftConstraints(soft);
     }
 
-    /*
+    /**
      * map hard/soft constraints from Service 1.2
      * to ServicePath 1.4.
      */
index 494ff75af4b9986eadd1423196e130f31cde556b..e7bd93f3f1e780c769499108fadbb38b5cea9424 100644 (file)
@@ -10,7 +10,7 @@ package org.opendaylight.transportpce.servicehandler;
 
 import java.util.Map;
 
-/*
+/**
  * Enum class to identify ServiceAEnd / serviceZEnd.
  *
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
@@ -37,7 +37,7 @@ enum MyEndpoint {
         VALUE_MAP = b.build();
     }
 
-    /*
+    /**
      * Get integer value.
      *
      * @return integer value.
@@ -46,7 +46,7 @@ enum MyEndpoint {
         return value;
     }
 
-    /*
+    /**
      * Get Endpoint value.
      *
      * @param valueArg
index 63350057e2dda4a201314483249910bbf3fe1a6e..0af2ad526d3f479da0e6a9642f750792a704d512 100644 (file)
@@ -14,7 +14,7 @@ import org.opendaylight.yang.gen.v1.http.org.openroadm.common.service.types.rev1
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-/*
+/**
  * Class for checking service sdnc-request-header compliancy.
  *
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
@@ -34,7 +34,7 @@ public class ServicehandlerCompliancyCheck {
     /* Response message from procedure. */
     private String message;
 
-    /*
+    /**
      * ServicehandlerCompliancyCheck class constructor.
      *
      * @param sdncRequestHeader
@@ -55,7 +55,7 @@ public class ServicehandlerCompliancyCheck {
         this.setMessage("");
     }
 
-    /*
+    /**
      * ServicehandlerCompliancyCheck class constructor.
      *
      * @param sdncRequestHeader
@@ -72,7 +72,7 @@ public class ServicehandlerCompliancyCheck {
         this.setMessage("");
     }
 
-    /*
+    /**
      * ServicehandlerCompliancyCheck class constructor.
      *
      * @param serviceName
@@ -89,7 +89,7 @@ public class ServicehandlerCompliancyCheck {
         this.setMessage("");
     }
 
-    /*
+    /**
      * ServicehandlerCompliancyCheck class constructor.
      *
      * @param serviceName
@@ -103,7 +103,7 @@ public class ServicehandlerCompliancyCheck {
         this.setMessage("");
     }
 
-    /*
+    /**
      * Check if a String is not null and not equal to void.
      *
      * @param value
@@ -119,7 +119,7 @@ public class ServicehandlerCompliancyCheck {
 
     }
 
-    /*
+    /**
      * Check Compliancy of Service request.
      *
      * @param contype
index d55d9d063a7aad02f0927212fecbafbdde3a516f..b385b14ffa6847840016c2a69a89a8e8c210aadc 100644 (file)
@@ -17,7 +17,7 @@ import org.opendaylight.yang.gen.v1.http.org.openroadm.common.service.types.rev1
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-/*
+/**
  * Class for checking missing info on Tx/Rx for A/Z end.
  *
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
@@ -32,7 +32,7 @@ public class ServicehandlerTxRxCheck {
     /* type serviceEndpoint : serviceAEnd / serviceZEnd. */
     private String service = null;
 
-    /*
+    /**
      * ServicehandlerTxRxCheck class constructor.
      *
      * @param endPoint
@@ -48,7 +48,7 @@ public class ServicehandlerTxRxCheck {
         }
     }
 
-    /*
+    /**
      * Check if a String is not null and not equal to ''.
      *
      * @param value
@@ -64,7 +64,7 @@ public class ServicehandlerTxRxCheck {
 
     }
 
-    /*
+    /**
      * check if Port info is compliant.
      *
      * @param port
@@ -89,7 +89,7 @@ public class ServicehandlerTxRxCheck {
 
     }
 
-    /*
+    /**
      * Check if lgx info is compliant.
      *
      * @param lgx
@@ -111,7 +111,7 @@ public class ServicehandlerTxRxCheck {
         return result;
     }
 
-    /*
+    /**
      * Check if Tx/Rx Direction complaincy info.
      *
      * @param txDirection
@@ -149,7 +149,7 @@ public class ServicehandlerTxRxCheck {
         return result;
     }
 
-    /*
+    /**
      * Check Compliancy of Service TxRx info.
      *
      * @return true if String ok false if not
index 355681ebdd1ff157fdf21b920267d9762828f27c..fea237842df999aa76994340254adb58df293d89 100644 (file)
@@ -130,8 +130,8 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 
-/*
- * Class to implement ServicehandlerService & ServicehandlerListener.
+/**
+ * Class to implement ServicehandlerService and ServicehandlerListener.
  *
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
  *
@@ -194,8 +194,9 @@ public class ServicehandlerImpl implements ServicehandlerService, StubpceListene
 
         LOG.info("checking Service Compliancy ...");
         /*
-         * Upon receipt of service-create RPC, service header and sdnc-request
-         * header compliancy are verified.
+         * Upon receipt of service
+         * -create RPC, service header and sdnc
+         * -request header compliancy are verified.
          */
         compliancyCheck = new ServicehandlerCompliancyCheck(input.getSdncRequestHeader(), input.getServiceName(),
                 input.getConnectionType(), RpcActions.ServiceCreate);
index 32929b9a46322068cfa41deb01d53e9e7e47284f..29e838d16d1047921735fc94e1e7f1c50d94d967 100644 (file)
@@ -20,7 +20,7 @@ import org.opendaylight.yangtools.concepts.ListenerRegistration;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-/*
+/**
  * Class to register
  * Servicehandler Service and Notification.
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
@@ -51,7 +51,7 @@ public class ServicehandlerProvider {
         this.notificationPublishService = notificationPublishService;
     }
 
-    /*
+    /**
      * Method called when the blueprint container is created.
      */
     public void init() {
@@ -62,7 +62,7 @@ public class ServicehandlerProvider {
         rpcRegistration = rpcRegistry.addRpcImplementation(ServicehandlerService.class, consumer);
     }
 
-    /*
+    /**
      * Method called when the blueprint container is destroyed.
      */
     public void close() {
index 023c2b4e9e70188f08d630ac7a8852ef55283fd9..12d2b0dee6e86b9fc738779d65a108f67f72dd84 100644 (file)
@@ -14,7 +14,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 
-/*
+/**
  * Class to check RPCs Compliancy.
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
  *
index 9a710c6e688adbfa39adbb9d7b45338c40357b4d..0ad88a6e59f41e8b6360acf56c0345d3978eb01c 100644 (file)
@@ -32,7 +32,7 @@ import org.opendaylight.yang.gen.v1.http.org.transportpce.b.c._interface.service
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-/*
+/**
  * Class for Sending
  * PCE requests :
  * - path-computation-request
index 558b56610b7cbc811dbf017ee2e952c1a565290a..41ac6e991c47908879ae0fe893faef4c0d05adb7 100644 (file)
@@ -34,7 +34,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 
-/*
+/**
  * Class to implement
  * StubpceService
  * StubpceListener.
index a1f2162187013bfd2aa20b9c4a9c674a9647bff3..0b1fe228e37c8800f4b92382d6016ae44dfb9911 100644 (file)
@@ -19,9 +19,9 @@ import org.opendaylight.yangtools.concepts.ListenerRegistration;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-/*
+/**
  * Class to register
- * Stubpce Service & Notification.
+ * Stubpce Service and Notification.
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
  *
  */
@@ -41,7 +41,7 @@ public class StubpceProvider {
         this.notificationPublishService = notificationPublishService;
     }
 
-    /*
+    /**
      * Method called when the blueprint container is created.
      */
     public void init() {
@@ -50,7 +50,7 @@ public class StubpceProvider {
         rpcRegistration = rpcRegistry.addRpcImplementation(StubpceService.class, consumer);
     }
 
-    /*
+    /**
      * Method called when the blueprint container is destroyed.
      */
     public void close() {
index 36751b1ca1e1f1e5dde14503a81a21055bbc8139..8f17cc0d6980cd2a3c1c195b8c62e73d08a1ffc5 100644 (file)
@@ -17,9 +17,8 @@ import org.opendaylight.yang.gen.v1.http.org.openroadm.topology.rev161014.topolo
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-/*
- *Class for Sending
- * Renderer requests :
+/**
+ * Class for Sending Renderer requests :
  * - Service-implementation-request
  * - Service-delete-request.
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
index aa39144e489cfff31090c39b243ec93ef1e00abb..16132378cea15cf2cbaab98c048d6badbd5b2e55 100644 (file)
@@ -34,7 +34,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 
-/*
+/**
  * Class to implement StubrendererService.
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
  *
index 7b5b4c18d6f06244925e2f3127a7352240062634..066bf1897f0d16b0142df78f3fa7d4113974a983 100644 (file)
@@ -19,8 +19,8 @@ import org.opendaylight.yangtools.concepts.ListenerRegistration;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-/*
- *Class to register Stubrenderer Service & Notification.
+/**
+ * Class to register Stubrenderer Service and Notification.
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
  *
  */
@@ -40,7 +40,7 @@ public class StubrendererProvider {
         this.notificationPublishService = notificationPublishService;
     }
 
-    /*
+    /**
      * Method called when the blueprint container is created.
      */
     public void init() {
@@ -49,7 +49,7 @@ public class StubrendererProvider {
         rpcRegistration = rpcRegistry.addRpcImplementation(StubrendererService.class, consumer);
     }
 
-    /*
+    /**
      * Method called when the blueprint container is destroyed.
      */
     public void close() {