Commit 134f0dbe1d25f3f99c047738f941ff1f72a556ac

Authored by Emerson Oliveira
1 parent 83843ee8
Exists in master

Adição de javadoc nas classes AfterStartupProcess e AfterShutdownProcess

impl/core/src/main/java/br/gov/frameworkdemoiselle/lifecycle/AfterShutdownProccess.java
... ... @@ -36,6 +36,11 @@
36 36 */
37 37 package br.gov.frameworkdemoiselle.lifecycle;
38 38  
  39 +/**
  40 + * This interface represents an event that is fired when the shutdown process is finalized.
  41 + *
  42 + * @author SERPRO
  43 + */
39 44 public interface AfterShutdownProccess {
40 45  
41 46 }
... ...
impl/core/src/main/java/br/gov/frameworkdemoiselle/lifecycle/AfterStartupProccess.java
... ... @@ -36,6 +36,11 @@
36 36 */
37 37 package br.gov.frameworkdemoiselle.lifecycle;
38 38  
  39 +/**
  40 + * This interface represents an event that is fired when the start up process is finalized.
  41 + *
  42 + * @author SERPRO
  43 + */
39 44 public interface AfterStartupProccess {
40 45  
41 46 }
... ...