summaryrefslogtreecommitdiffstats
path: root/bindings/java/tests/Test.java
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2008-04-29 12:06:30 +0000
committerFrederic Peters <fpeters@entrouvert.com>2008-04-29 12:06:30 +0000
commit3b93e1b952d046ca20459194e8ea649e1e0794bc (patch)
treed882a011f53ea0d7b53bcde22696d7d272bafa96 /bindings/java/tests/Test.java
parent34e4fd0b5aae872344a16267efac847f45108ca7 (diff)
downloadlasso-3b93e1b952d046ca20459194e8ea649e1e0794bc.tar.gz
lasso-3b93e1b952d046ca20459194e8ea649e1e0794bc.tar.xz
lasso-3b93e1b952d046ca20459194e8ea649e1e0794bc.zip
[project @ fpeters@0d.be-20080217115557-8qtcrc1vzb75f75c]
merged Benjamin branch Original author: Frederic Peters <fpeters@0d.be> Date: 2008-02-17 12:55:57.088000+01:00
Diffstat (limited to 'bindings/java/tests/Test.java')
-rw-r--r--bindings/java/tests/Test.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/bindings/java/tests/Test.java b/bindings/java/tests/Test.java
new file mode 100644
index 00000000..4e1450df
--- /dev/null
+++ b/bindings/java/tests/Test.java
@@ -0,0 +1,11 @@
+import com.entrouvert.lasso.*;
+
+class Test {
+
+ public static void main(String args[]) {
+ Samlp2AuthnRequest p;
+
+ p = new Samlp2AuthnRequest();
+ System.out.println(p.dump());
+ }
+}