Not directly.  When we converted our old WebObjects apps, we made a
custom superclass that hooks setPersistenceState():

    /**
     *  When any of our objects is inserted, call a method
     *  awakeFromInsertion() to allow the object class to do initialization.
     */
    public void setPersistenceState(int state)
    {
        super.setPersistenceState(state);

        if (state == PersistenceState.NEW) {
            awakeFromInsertion();
        }
    }

    /**
     *  The default behavior for awakeFromInsertion() is to do nothing.
     */
    public void awakeFromInsertion()
    {
    }





Watkins, Garry wrote:
> I need to set up some default values.  Is there an equivalent to
> awakeFromInsertion (WebObjects) for Cayenne?
>
> Thanks
>   

Reply via email to