I have the next escenario, I'll hope that you can give support, thank a lot.
class Veh {
String id;
String engine;
setter getter.......;
}
In my apps in my firts action charge session struts map with a Veh object of car instance.
class Car extends Veh{
boolean roof;
....setter getter...;
}
class Bike extends Veh{
String helmetBrand;
....setter getter...;
}
After that, I have been redirected in many action without problem, but in one of them in Firefox browser I had debugging this and I could check that SUCCESS return, and I had checked the id value in this case Session object Veh instance Car object have id that I hope, but when arrive to first sentence of execute method in the next action lost id value....
Which could be the detail in this it?