blob: 4e1450df5a7d9f923233f44d9e3b2801886c86fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import com.entrouvert.lasso.*;
class Test {
public static void main(String args[]) {
Samlp2AuthnRequest p;
p = new Samlp2AuthnRequest();
System.out.println(p.dump());
}
}
|