What happened to custom properties on documents?
From JCMS-1, CmsObject interface:

    /**
     * Get a map of all non standard properties for this object
     *
     * @return a map of properties
     */
    Map getProperties();

    /**
     * Get a named property for this object
     *
     * @param name of the property
     * @return the property as an object
     */
    Object getProperty(String name);

    /**
     * Sets a named property for this object
     *
     * @param name
     * @param property
     */
    void setProperty(String name, Object property);

Can we add these APIs back to the CmsObject interface?
We could change object -> string if that makes it easier

--
David Sean Taylor
Bluesunrise Software
[EMAIL PROTECTED]
[office] +01 707 773-4646
[mobile] +01 707 529 9194

Reply via email to