Retrieval of a List of Domain Log Profiles

Retrieves a list of domain log profiles.

Syntax

Collection<DomainLogProfileVO> getDomainLogProfiles() throws SUPAdminException;

Returns

If successful, returns a list of objects of the specified type (can be null). If unsuccessful, returns SUPAdminException.

Examples

  • Retrieval
    for (DomainLogProfileVO dlpvo : domainLog.getDomainLogProfiles()) {
    System.out.println(dlpvo.getName());
    }