The FilterAdmin
interface supports the management of
filter objects.
FilterID add_filter(in Filter new_filter);
Adds a filter to the target object.
new_filter
- The filter object to be added to the
target object.
FilterIDSeq get_all_filters();
Retrieve a list of all filters associated with the target object.
Filter get_filter(in FilterID filter) raises(FilterNotFound);
Retrieves a reference for the filter with the given filter ID from the target object.
filter
- The ID of the filter to locate.
FilterNotFound
exception is raised.
void remove_all_filters();
Remove all filters associated with the target object.
void remove_filter(in FilterID filter) raises(FilterNotFound);
Remove a filter from the target object, the filter itself
is not destroyed. If the specified filter is not found
a FilterNotFound
exception is raised.
filter
- The ID of the filter to remove.
Generated by the ORBacus IDL-to-HTML translator (non-commercial)