LogEntry.java 464 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.service.ManagerPackage;

import org.omg.CORBA.portable.IDLEntity;

public final class LogEntry
implements IDLEntity {
    public int level;
    public String templateId = "";
    public String[] params;

    public LogEntry() {
    }

    public LogEntry(int level, String templateId, String[] params) {
        this.level = level;
        this.templateId = templateId;
        this.params = params;
    }
}