diff --git a/impl/core/src/main/java/br/gov/frameworkdemoiselle/annotation/Shutdown.java b/impl/core/src/main/java/br/gov/frameworkdemoiselle/annotation/Shutdown.java
deleted file mode 100644
index 0a1a7d2..0000000
--- a/impl/core/src/main/java/br/gov/frameworkdemoiselle/annotation/Shutdown.java
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
- * Demoiselle Framework
- * Copyright (C) 2010 SERPRO
- * ----------------------------------------------------------------------------
- * This file is part of Demoiselle Framework.
- *
- * Demoiselle Framework is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License version 3
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License version 3
- * along with this program; if not, see
- * Take a look at the following usage sample: - *
- *
- * - *- *- * public class Finalizer { - * - * @Shutdown - * @Priority(5) - * public void finalize() { - * ... - * } - * } - * - * - * - * - *- * - *
- * The @Shutdown
annotation allows an integer value to be defined, which stands for the method execution
- * priority when several finalizer classes are available in the application.
- *
- * @author SERPRO
- */
-@Target(METHOD)
-@Retention(RUNTIME)
-public @interface Shutdown {
-
- /**
- * Most important priority value.
- *
- * @deprecated
- * @see Priority
- */
- @Deprecated
- public static int MAX_PRIORITY = Integer.MIN_VALUE;
-
- /**
- * Less important priority value.
- *
- * @deprecated
- * @see Priority
- */
- @Deprecated
- public static int MIN_PRIORITY = Integer.MAX_VALUE;
-
- /**
- * An integer value defines method execution order (i.e., priority).
- *
- * @deprecated
- * @see Priority
- */
- @Deprecated
- int priority() default MIN_PRIORITY;
-
-}
diff --git a/impl/core/src/main/java/br/gov/frameworkdemoiselle/annotation/Startup.java b/impl/core/src/main/java/br/gov/frameworkdemoiselle/annotation/Startup.java
deleted file mode 100644
index e24625f..0000000
--- a/impl/core/src/main/java/br/gov/frameworkdemoiselle/annotation/Startup.java
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
- * Demoiselle Framework
- * Copyright (C) 2010 SERPRO
- * ----------------------------------------------------------------------------
- * This file is part of Demoiselle Framework.
- *
- * Demoiselle Framework is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License version 3
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License version 3
- * along with this program; if not, see
- * Take a look at the following usage sample: - *
- *
- * - *- *- * public class Initializer { - * - * @Startup - * @Priority(1) - * public void initialize() { - * ... - * } - * } - * - * - * - * - *- * - *
- * The @Startup
annotation allows an integer value to be defined, which stands for the method execution
- * priority when several initializer classes are available in the application.
- *
- * @author SERPRO
- */
-@Target(METHOD)
-@Retention(RUNTIME)
-public @interface Startup {
-
- /**
- * Most important priority value.
- *
- * @deprecated
- * @see Priority
- */
- @Deprecated
- public static int MAX_PRIORITY = Integer.MIN_VALUE;
-
- /**
- * Less important priority value.
- *
- * @deprecated
- * @see Priority
- */
- @Deprecated
- public static int MIN_PRIORITY = Integer.MAX_VALUE;
-
- /**
- * An integer value defines method execution order (i.e., priority).
- *
- * @deprecated
- * @see Priority
- */
- @Deprecated
- int priority() default MIN_PRIORITY;
-
-}
diff --git a/impl/core/src/main/java/br/gov/frameworkdemoiselle/lifecycle/Shutdown.java b/impl/core/src/main/java/br/gov/frameworkdemoiselle/lifecycle/Shutdown.java
new file mode 100644
index 0000000..82a8e13
--- /dev/null
+++ b/impl/core/src/main/java/br/gov/frameworkdemoiselle/lifecycle/Shutdown.java
@@ -0,0 +1,70 @@
+/*
+ * Demoiselle Framework
+ * Copyright (C) 2010 SERPRO
+ * ----------------------------------------------------------------------------
+ * This file is part of Demoiselle Framework.
+ *
+ * Demoiselle Framework is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License version 3
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License version 3
+ * along with this program; if not, see
+ * Take a look at the following usage sample: + *
+ *
+ *+ *+ * public class Finalizer { + * + * @Shutdown + * @Priority(5) + * public void finalize() { + * ... + * } + * } + * + *+ *
+ *
+ * @author SERPRO
+ */
+@Target(METHOD)
+@Retention(RUNTIME)
+public @interface Shutdown {
+}
diff --git a/impl/core/src/main/java/br/gov/frameworkdemoiselle/lifecycle/Startup.java b/impl/core/src/main/java/br/gov/frameworkdemoiselle/lifecycle/Startup.java
new file mode 100644
index 0000000..1994f35
--- /dev/null
+++ b/impl/core/src/main/java/br/gov/frameworkdemoiselle/lifecycle/Startup.java
@@ -0,0 +1,70 @@
+/*
+ * Demoiselle Framework
+ * Copyright (C) 2010 SERPRO
+ * ----------------------------------------------------------------------------
+ * This file is part of Demoiselle Framework.
+ *
+ * Demoiselle Framework is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License version 3
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License version 3
+ * along with this program; if not, see
+ * Take a look at the following usage sample: + *
+ *
+ *+ *+ * public class Finalizer { + * + * @Startup + * @Priority(1) + * public void init() { + * ... + * } + * } + * + *+ *
+ * + * @author SERPRO + */ +@Target(METHOD) +@Retention(RUNTIME) +public @interface Startup { +} -- libgit2 0.21.2