Retrieval of a List of Log Filters

Retrieves a list of domain log filters.

Syntax

Collection<DomainLogFilterVO> getDomainLogFilters() throws SUPAdminException;

Returns

If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.

Examples

  • Retrieval
    for (DomainLogFilterVO dlfvo : domainLog.getDomainLogFilters()) {
    	System.out.println (dlfvo.getName());
    }