summaryrefslogtreecommitdiffstats
path: root/java/gov/nist/core/ServerLogger.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/gov/nist/core/ServerLogger.java')
-rw-r--r--java/gov/nist/core/ServerLogger.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/java/gov/nist/core/ServerLogger.java b/java/gov/nist/core/ServerLogger.java
new file mode 100644
index 0000000..1a31fde
--- /dev/null
+++ b/java/gov/nist/core/ServerLogger.java
@@ -0,0 +1,49 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ *
+ * This code has been contributed to the public domain.
+ * This software is provided by NIST as a service and is expressly
+ * provided "AS IS." NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED
+ * OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
+ * AND DATA ACCURACY. NIST does not warrant or make any representations
+ * regarding the use of the software or the results thereof, including but
+ * not limited to the correctness, accuracy, reliability or usefulness of
+ * the software.
+ *
+ * Permission to use this software is contingent upon your acceptance
+ * of the terms of this agreement.
+ */
+package gov.nist.core;
+
+import java.util.Properties;
+
+import javax.sip.SipStack;
+
+import gov.nist.javax.sip.message.SIPMessage;
+
+/**
+ * @author jean.deruelle@gmail.com
+ *
+ */
+public interface ServerLogger extends LogLevels {
+
+
+ void closeLogFile();
+
+ void logMessage(SIPMessage message, String from, String to, boolean sender, long time);
+
+ void logMessage(SIPMessage message, String from, String to, String status,
+ boolean sender, long time);
+
+ void logMessage(SIPMessage message, String from, String to, String status,
+ boolean sender);
+
+ void logException(Exception ex);
+
+ public void setStackProperties(Properties stackProperties);
+
+ public void setSipStack(SipStack sipStack);
+
+
+}