Package oracle.stellent.ridc.filter
Interface IIdcFilter
- All Known Implementing Classes:
BeforeJaxwsServiceFilter,BeforeServiceRequestFilter,DmsFilter,IdcFilterAdapter
@Exported
public interface IIdcFilter
Interface for IdcFilter. Extending an adapter can help insulate your application from
future changes to this interface.
-
Method Summary
Modifier and TypeMethodDescriptionvoiddoFilter(IdcFilterType ftype, Object... objects) Execute RIDC filter.
-
Method Details
-
doFilter
Execute RIDC filter. The passed in objects are as they existed just prior to the filter call. Typically, a filter will modify the contents of one or more of these objects. Depending on the type of filter, some or all of these objects might be null.- Parameters:
ftype- Type of filter, typically this indicates where in the RIDC processing this filter was calledobjects- optional objects added depending on the IdcFilterType- Throws:
IdcClientException- throw this if the processing in your filter causes an exception- See Also:
-