I wonder if MyExtendedActionMapping is as simple as:

public class MyExtendedActionMapping extends ActionMapping {
        private String xxx;
        public void setXXX(String xxx) { this.xxx = xxx; }
        public String getXXX() { return xxx; }
}

Should I implement any other method...?

Thanks.

--------------------------------------------
Guido García Bernardo
[EMAIL PROTECTED]
Spain is different.

On Tue, 25 Feb 2003, Brandon Goodin wrote:

} Here is a config sample:
}
} <action path="/myAction.do"
}            parameter="submit"
}            type="com.foo.MyAction"
}            name="myForm"
}            scope="request"
}            className="com.foo.MyExtendedActionMapping">
}         <set-property property="xxx" value="yyy"/>
}         <forward name="success" path="here.jsp" redirect="false"/>
}         <forward name="fail" path="there.jsp" redirect="true"/>
} </action>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to