JdkLogEntry.java
557 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.service.ManagerPackage;
import org.omg.CORBA.portable.IDLEntity;
public final class JdkLogEntry
implements IDLEntity {
public String category = "";
public int level;
public String templateId = "";
public String[] params;
public JdkLogEntry() {
}
public JdkLogEntry(String category, int level, String templateId, String[] params) {
this.category = category;
this.level = level;
this.templateId = templateId;
this.params = params;
}
}