fix some compilation warnings
[transportpce.git] / servicehandler / src / test / java / org / opendaylight / transportpce / servicehandler / mappers / ServiceImplementationRequestOutputConverter.java
index d44e4848ffb7ebb33ba237cb8c2e90f1c424c890..61aa49650ac75a3c7c0b35e13f49a1959bf94d5d 100644 (file)
@@ -10,7 +10,7 @@ package org.opendaylight.transportpce.servicehandler.mappers;
 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubrenderer.rev170426.ServiceImplementationRequestOutput;
 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.stubrenderer.rev170426.ServiceImplementationRequestOutputBuilder;
 
-public class ServiceImplementationRequestOutputConverter {
+public final class ServiceImplementationRequestOutputConverter {
 
     public static ServiceImplementationRequestOutput getStub(org.opendaylight.yang.gen.v1.http.org.transportpce
             .b.c._interface.servicepath.rev170426.ServiceImplementationRequestOutput concrete) {
@@ -29,4 +29,7 @@ public class ServiceImplementationRequestOutputConverter {
         return concreteBuilder.build();
     }
 
+    private ServiceImplementationRequestOutputConverter() {
+    }
+
 }