[
https://jira.jboss.org/jira/browse/JBMAN-81?page=com.atlassian.jira.plugi...
]
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