Gregory Slonim wrote:
        <interceptor-ref name="json">
            <param name="enableSMD">true</param>
        </interceptor-ref>

Is this a stack defined elsewhere or just a single interceptor? If the latter, you're not *adding* this interceptor, you're using *just* this interceptor.

    public final List<String> getPayPlanTypes()
    {
        return payPlanTypes;
    }

    public final void setPayPlanTypes(List<String> payPlanTypes)
    {
        this.payPlanTypes = payPlanTypes;
    }

I recognize that "final" for methods is an attempt to make this not-over-ridable, but I wonder if that's not causing grief. (Maybe the compiler is in-lining them, but that means it's not visible in the reflection api that's used to find the appropriate attributes?)

-Dale

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to