]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.auditlogging/scl/Simantics/AuditLogging/Server.scl
396f5f5619a222c8b0c07ca95246fadf84b49c88
[simantics/platform.git] / bundles / org.simantics.auditlogging / scl / Simantics / AuditLogging / Server.scl
1 import "Map" as Map
2
3 importJava "org.simantics.audit.AuditLogging" where
4     register :: String -> <Proc> String
5     log :: String -> Map.T String a -> <Proc, Exception> ()
6     error :: String -> Map.T String a -> <Proc, Exception> ()
7     trace :: String -> Map.T String a -> <Proc, Exception> ()
8     getLogEvents :: String -> String -> String -> String -> <Proc, Exception> [String]
9
10 importJava "org.simantics.audit.server.AuditLoggingServer" where
11     start :: String -> Integer -> <Proc> ()