customizable project stage
--------------------------
Key: EXTCDI-9
URL: https://issues.apache.org/jira/browse/EXTCDI-9
Project: MyFaces CODI
Issue Type: New Feature
Reporter: Gerhard Petracek
Assignee: Gerhard Petracek
the core of codi should offer a project stage mechanism for custom project
stages (application.PROJECT_STAGE)
example:
@Inject @Current private ProjectStage projectStage;
...
if(projectStage.is("MyDevStage"))
{
//...
}
if the jsf module is available as well, it should be possible to use e.g.:
@Inject private JsfProjectStage jsfProjectStage;
if(jsfProjectStage.isDevelopment())
{
//...
}
the implementation should use the project stages provided by jsf.
if application.PROJECT_STAGE is used, it should overrule the project stage of
jsf.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.