1 18 package org.osgi.service.log; 19 20 import org.osgi.framework.Bundle; 21 import org.osgi.framework.ServiceReference; 22 23 36 public interface LogEntry { 37 44 public Bundle getBundle(); 45 46 54 public ServiceReference getServiceReference(); 55 56 70 public int getLevel(); 71 72 79 public String getMessage(); 80 81 98 public Throwable getException(); 99 100 108 public long getTime(); 109 } 110 | Popular Tags |