1 package ch.qos.logback.access.common.net; 2 3 import java.io.IOException; 4 import java.io.InputStream; 5 6 import ch.qos.logback.access.common.spi.AccessEvent; 7 import ch.qos.logback.core.net.HardenedObjectInputStream; 8 import jakarta.servlet.http.Cookie; 9 10 public class HardenedAccessEventInputStream extends HardenedObjectInputStream { 11 12 public HardenedAccessEventInputStream(InputStream in) throws IOException { 13 super(in, new String[] { AccessEvent.class.getName(), String[].class.getName(), Cookie.class.getName() }); 14 } 15 16 }