Infra lifecycle management#69
Conversation
| * Hello world! | ||
| * | ||
| */ | ||
| public class App { |
| */ | ||
| public interface ILifecycleManagement { | ||
|
|
||
| public Object getInvoker( AbsoluteObjectReference aor); |
There was a problem hiding this comment.
Shouldn't it return a Invoker instead of Object?
| public interface ILifecycleManagement { | ||
|
|
||
| public Object getInvoker( AbsoluteObjectReference aor); | ||
| public void invocationDone( Object obj); |
There was a problem hiding this comment.
Change parameters to AOR and Invoker
| @@ -0,0 +1,6 @@ | |||
| package br.ufrn.dimap.middleware.infrastructure.lifecycleManagement.modelo; | |||
|
|
|||
| public interface IStaticRegistry | |||
There was a problem hiding this comment.
Change interface name to StaticRegistry, following the pattern used by the others classes and interfaces
| * @version 1.0 | ||
| * @see LifecycleManagement Interface | ||
| */ | ||
| public interface ILifecycleManagement { |
There was a problem hiding this comment.
Change interface name to LifecycleManagement, following the pattern used by the others classes and interfaces
|
|
||
| import br.ufrn.dimap.middleware.infrastructure.lifecycleManagement.modelo.IStaticRegistry; | ||
|
|
||
| public class StaticRegistry implements IStaticRegistry |
There was a problem hiding this comment.
Change interface name to StaticRegistryImpl, following the pattern used by the others classes and interfaces
| * @version 1.0 | ||
| * @see Lifecycle Management | ||
| */ | ||
| public class LifecycleManagement implements ILifecycleManagement { |
There was a problem hiding this comment.
Change interface name to LifecycleManagementImpl, following the pattern used by the others classes and interfaces
No description provided.