Fix checkstyle violations in sal-dom-api
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / sal / core / api / model / SchemaService.java
index a56a468e20334d91d8c93750c048d7504a9a1db5..673849d09d84c53bad95f1b02d4391d91947c05a 100644 (file)
@@ -15,29 +15,31 @@ import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 import org.opendaylight.yangtools.yang.model.api.SchemaContextListener;
 
 /**
+ * Deprecated.
+ *
  * @deprecated Use {@link DOMSchemaService} instead.
  */
 @Deprecated
 public interface SchemaService extends BrokerService, DOMSchemaService {
 
     /**
-     * Registers a YANG module to session and global context
+     * Registers a YANG module to session and global context.
      */
     void addModule(Module module);
 
     /**
-     * Unregisters a YANG module from session context
+     * Unregisters a YANG module from session context.
      */
     void removeModule(Module module);
 
     /**
-     * Returns session specific YANG schema context
+     * Returns session specific YANG schema context.
      */
     @Override
     SchemaContext getSessionContext();
 
     /**
-     * Returns global schema context
+     * Returns global schema context.
      */
     @Override
     SchemaContext getGlobalContext();