1 package com.loribel.commons.abstraction;
2
3 /***
4 * Interface for Object that can unregister.
5 *
6 * @author Grégory Borelli
7 */
8 public interface GB_Unregisterable
9 {
10
11 /***
12 * Returns true if success.
13 *
14 * @return boolean
15 */
16 boolean unregister();
17
18 }