Retrieval of a List of Log Profiles

Retrieves a list of log profiles.

Syntax

Collection<DomainLogProfileVO> getDomainLogProfiles() throws SUPAdminException;

Returns

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

Examples

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