[jboss-jira] [JBoss JIRA] Resolved: (JBMAN-7) Need a ManagementDeployment to pick up types, etc.
Scott M Stark (JIRA)
jira-events at lists.jboss.org
Thu Mar 13 14:50:57 EDT 2008
[ http://jira.jboss.com/jira/browse/JBMAN-7?page=all ]
Scott M Stark resolved JBMAN-7.
-------------------------------
Resolution: Done
package org.jboss.managed.api.annotation;
import org.jboss.managed.api.ManagedDeployment.DeploymentPhase;
/**
* An annotation identifying a managed deployment
*
* @author Scott.Stark at jboss.org
* @version $Revision: 70834 $
*/
public @interface ManagementDeployment
{
/**
* Get the simple name (x.ear) for the deployment. Generally
* this is taken from the DeploymentUnit.simpleName.
* @return simple name of the deployment
*/
public String simpleName() default ManagementConstants.GENERATED;
/**
* A description of the managed deployment
* @return description of the managed deployment
*/
public String description() default ManagementConstants.GENERATED;
/**
* The phase the deployment belongs to
* @return
*/
DeploymentPhase phase() default DeploymentPhase.APPLICATION;
/**
* Get the deployment/module types.
* @return deployment types
*/
public String[] types = {};
}
> Need a ManagementDeployment to pick up types, etc.
> --------------------------------------------------
>
> Key: JBMAN-7
> URL: http://jira.jboss.com/jira/browse/JBMAN-7
> Project: JBoss Managed
> Issue Type: Task
> Components: managedobject
> Affects Versions: JBossMan.2.0.0.Beta11
> Reporter: Scott M Stark
> Assigned To: Scott M Stark
> Fix For: JBossMan.2.0.0.CR1
>
>
> We need a ManagementDeployment annotation to allow for specification of information found on the ManagedDeployment api that is not available from the DeploymentUnit, ManagedObject. With the removal of the Deployer/DeploymentUnit types, types is one piece of information that is needed in the annotation.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list