Re: Retrieving static values in Actions

2007-08-21 Thread mraible
This works if I use the fully-qualified class name for ServletMappingConstants. In the framework's current EL, it's possible to do MAPPING.STATIC, so I'm trying to create a similar short syntax with Struts 2 for easier migration. Thanks, Matt Musachy Barroso wrote: > > try : > > @[EMAIL PROT

Re: Retrieving static values in Actions

2007-08-21 Thread Musachy Barroso
try : @[EMAIL PROTECTED] musachy On 8/21/07, mraible <[EMAIL PROTECTED]> wrote: > > I have the following interface that I'm trying to read variables from: > > public interface ServletMappingConstants > { > String SECURE_PREFIX = "secure/"; > > String STATIC = "static"; > ... > } > > If my Ac