summaryrefslogtreecommitdiffstats
path: root/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl')
-rw-r--r--tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/CrudService.java2
-rw-r--r--tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/ElementCrudService.java2
-rw-r--r--tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/ModuleConfiguration.java2
-rw-r--r--tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/read/ElementStateCustomizer.java2
4 files changed, 4 insertions, 4 deletions
diff --git a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/CrudService.java b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/CrudService.java
index f5b6614d1..80421e9dd 100644
--- a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/CrudService.java
+++ b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/CrudService.java
@@ -25,7 +25,7 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
/**
* Example of an aggregated access interface.
- * <p/>
+ *
* Shared by all the customizers hiding the ugly details of our data management.
*
* TODO update javadoc
diff --git a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/ElementCrudService.java b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/ElementCrudService.java
index 33f9ad9dc..26121e024 100644
--- a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/ElementCrudService.java
+++ b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/ElementCrudService.java
@@ -39,7 +39,7 @@ import org.slf4j.LoggerFactory;
/**
* Simple example of class handling Crud operations for plugin.
- * <p/>
+ *
* No real handling, serves just as an illustration.
*
* TODO update javadoc
diff --git a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/ModuleConfiguration.java b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/ModuleConfiguration.java
index 52a317b3b..6ee282889 100644
--- a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/ModuleConfiguration.java
+++ b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/ModuleConfiguration.java
@@ -23,7 +23,7 @@ import net.jmob.guice.conf.core.Syntax;
/**
* Class containing static configuration for ${rootArtifactId} module,<br>
* either loaded from property file ${rootArtifactId}.json from classpath.
- * <p/>
+ *
* Further documentation for the configuration injection can be found at:
* https://github.com/yyvess/gconf
*/
diff --git a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/read/ElementStateCustomizer.java b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/read/ElementStateCustomizer.java
index 22e8032a6..5cfd3da43 100644
--- a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/read/ElementStateCustomizer.java
+++ b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/src/main/java/read/ElementStateCustomizer.java
@@ -94,7 +94,7 @@ public final class ElementStateCustomizer implements
/**
*
* Initialize configuration data based on operational data.
- * <p/>
+ *
* Very useful when a plugin is initiated but the underlying layer already contains some operation state.
* Deriving the configuration from existing operational state enables reconciliation in case when
* Honeycomb's persistence is not available to do the work for us.