You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@beehive.apache.org by "Jason Dunckley (JIRA)" <be...@incubator.apache.org> on 2005/02/16 16:30:45 UTC

[jira] Created: (BEEHIVE-304) ValidatableProperty annotations not being processed for simple actions

ValidatableProperty annotations not being processed for simple actions
----------------------------------------------------------------------

         Key: BEEHIVE-304
         URL: http://issues.apache.org/jira/browse/BEEHIVE-304
     Project: Beehive
        Type: Bug
  Components: NetUI  
    Versions: V1Beta    
    Reporter: Jason Dunckley


Using the simple action below, the jpf-validation-<pageflowname>.xml never gets the generated rule

@Jpf.Controller( 
simpleActions={@Jpf.SimpleAction(name="val", path="newPage1.jsp", 

validationErrorForward = @Jpf.Forward(name = "failVal", path= "index.jsp"),
 
validatableProperties = {@Jpf.ValidatableProperty(propertyName = "required",

validateRequired = @Jpf.ValidateRequired(message = "This field is required.")
)
},
useFormBean = "beanInstance")
}
) 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Assigned: (BEEHIVE-304) ValidatableProperty annotations not being processed for simple actions

Posted by "Alejandro Ramirez (JIRA)" <be...@incubator.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-304?page=history ]

Alejandro Ramirez reassigned BEEHIVE-304:
-----------------------------------------

    Assign To: Jason Dunckley  (was: Alejandro Ramirez)

Please verify and close

> ValidatableProperty annotations not being processed for simple actions
> ----------------------------------------------------------------------
>
>          Key: BEEHIVE-304
>          URL: http://issues.apache.org/jira/browse/BEEHIVE-304
>      Project: Beehive
>         Type: Bug
>   Components: NetUI
>     Versions: V1Beta
>     Reporter: Jason Dunckley
>     Assignee: Jason Dunckley
>      Fix For: V1Beta

>
> Using the simple action below, the jpf-validation-<pageflowname>.xml never gets the generated rule
> @Jpf.Controller( 
> simpleActions={@Jpf.SimpleAction(name="val", path="newPage1.jsp", 
> validationErrorForward = @Jpf.Forward(name = "failVal", path= "index.jsp"),
>  
> validatableProperties = {@Jpf.ValidatableProperty(propertyName = "required",
> validateRequired = @Jpf.ValidateRequired(message = "This field is required.")
> )
> },
> useFormBean = "beanInstance")
> }
> ) 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Assigned: (BEEHIVE-304) ValidatableProperty annotations not being processed for simple actions

Posted by "Rich Feit (JIRA)" <be...@incubator.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-304?page=history ]

Rich Feit reassigned BEEHIVE-304:
---------------------------------

    Assign To: Rich Feit

> ValidatableProperty annotations not being processed for simple actions
> ----------------------------------------------------------------------
>
>          Key: BEEHIVE-304
>          URL: http://issues.apache.org/jira/browse/BEEHIVE-304
>      Project: Beehive
>         Type: Bug
>   Components: NetUI
>     Versions: V1Beta
>     Reporter: Jason Dunckley
>     Assignee: Rich Feit

>
> Using the simple action below, the jpf-validation-<pageflowname>.xml never gets the generated rule
> @Jpf.Controller( 
> simpleActions={@Jpf.SimpleAction(name="val", path="newPage1.jsp", 
> validationErrorForward = @Jpf.Forward(name = "failVal", path= "index.jsp"),
>  
> validatableProperties = {@Jpf.ValidatableProperty(propertyName = "required",
> validateRequired = @Jpf.ValidateRequired(message = "This field is required.")
> )
> },
> useFormBean = "beanInstance")
> }
> ) 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (BEEHIVE-304) ValidatableProperty annotations not being processed for simple actions

Posted by "Rich Feit (JIRA)" <be...@incubator.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-304?page=history ]
     
Rich Feit resolved BEEHIVE-304:
-------------------------------

      Assign To: Alejandro Ramirez  (was: Rich Feit)
     Resolution: Fixed
    Fix Version: V1Beta

The Validator generator wasn't doing anything with Simple Actions -- glad you caught this case.

> ValidatableProperty annotations not being processed for simple actions
> ----------------------------------------------------------------------
>
>          Key: BEEHIVE-304
>          URL: http://issues.apache.org/jira/browse/BEEHIVE-304
>      Project: Beehive
>         Type: Bug
>   Components: NetUI
>     Versions: V1Beta
>     Reporter: Jason Dunckley
>     Assignee: Alejandro Ramirez
>      Fix For: V1Beta

>
> Using the simple action below, the jpf-validation-<pageflowname>.xml never gets the generated rule
> @Jpf.Controller( 
> simpleActions={@Jpf.SimpleAction(name="val", path="newPage1.jsp", 
> validationErrorForward = @Jpf.Forward(name = "failVal", path= "index.jsp"),
>  
> validatableProperties = {@Jpf.ValidatableProperty(propertyName = "required",
> validateRequired = @Jpf.ValidateRequired(message = "This field is required.")
> )
> },
> useFormBean = "beanInstance")
> }
> ) 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Closed: (BEEHIVE-304) ValidatableProperty annotations not being processed for simple actions

Posted by "Jason Dunckley (JIRA)" <be...@incubator.apache.org>.
     [ http://issues.apache.org/jira/browse/BEEHIVE-304?page=history ]
     
Jason Dunckley closed BEEHIVE-304:
----------------------------------


This now works as expected.

> ValidatableProperty annotations not being processed for simple actions
> ----------------------------------------------------------------------
>
>          Key: BEEHIVE-304
>          URL: http://issues.apache.org/jira/browse/BEEHIVE-304
>      Project: Beehive
>         Type: Bug
>   Components: NetUI
>     Versions: V1Beta
>     Reporter: Jason Dunckley
>     Assignee: Jason Dunckley
>      Fix For: V1Beta

>
> Using the simple action below, the jpf-validation-<pageflowname>.xml never gets the generated rule
> @Jpf.Controller( 
> simpleActions={@Jpf.SimpleAction(name="val", path="newPage1.jsp", 
> validationErrorForward = @Jpf.Forward(name = "failVal", path= "index.jsp"),
>  
> validatableProperties = {@Jpf.ValidatableProperty(propertyName = "required",
> validateRequired = @Jpf.ValidateRequired(message = "This field is required.")
> )
> },
> useFormBean = "beanInstance")
> }
> ) 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira