[jboss-jira] [JBoss JIRA] Resolved: (JBMAN-81) Expand the ManagedOperation.Impact enum to identify lifecycle operations
Scott M Stark (JIRA)
jira-events at lists.jboss.org
Wed May 20 12:49:05 EDT 2009
[ https://jira.jboss.org/jira/browse/JBMAN-81?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Scott M Stark resolved JBMAN-81.
--------------------------------
Resolution: Done
public enum Impact {
/** There is not modification of the ManagedObject */
ReadOnly,
/** The impact may modify the ManagedObject */
ReadWrite,
/** The impact is to modify the ManagedObject */
WriteOnly,
/** The operation affects the component life-cycle/runtime state */
Lifecycle,
/** The impact is not known */
Unknown
};
> Expand the ManagedOperation.Impact enum to identify lifecycle operations
> ------------------------------------------------------------------------
>
> Key: JBMAN-81
> URL: https://jira.jboss.org/jira/browse/JBMAN-81
> Project: JBoss Managed
> Issue Type: Feature Request
> Components: managedobject
> Affects Versions: JBossMan.2.1.0.CR8
> Reporter: Scott M Stark
> Assignee: Scott M Stark
> Fix For: JBossMan.2.1.0.GA
>
>
> The current operation impact enum values only address whether the state of the object is updated in terms of properties being written:
> /**
> * The side-effect impact of invoking an operation
> */
> public enum Impact {
> /** There is not modification of the ManagedObject */
> ReadOnly,
> /** The impact may modify the ManagedObject */
> ReadWrite,
> /** The impact is to modify the ManagedObject */
> WriteOnly,
> /** The impact is not known */
> Unknown
> };
> We also need to know whether an operation is a lifecycle operation that would affect the underlying component runtime state.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list