com.sun.portal.providers
Interface ProviderEditTypes

All Known Implementing Classes:
ProviderAdapter

public interface ProviderEditTypes

This class defines the edit types that can be returned from the Provider.getEditType() method. The edit type informs a client of a provider object what it can expect to be returned from the provider's getEdit() method.


Field Summary
static int EDIT_COMPLETE
          Edit page is a complete document.
static int EDIT_SUBSET
          Edit page is not a complete document.
 

Field Detail

EDIT_SUBSET

public static final int EDIT_SUBSET
Edit page is not a complete document. This value is potentially returned from .getEditType() to signify that the buffer returned is only a subset of an document.

See Also:
EDIT_COMPLETE, Provider.getEditType(), Provider.getEdit(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse), Constant Field Values

EDIT_COMPLETE

public static final int EDIT_COMPLETE
Edit page is a complete document. This value is potentially returned from .getEdit() to signify that the buffer returned is a complete document.

See Also:
EDIT_SUBSET, Provider.getEditType(), Provider.getEdit(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse), Constant Field Values