01: /*
02: * MessageLayout.java
03: *
04: * Created on September 20, 2006, 4:29 PM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package com.sun.xml.wss.impl;
11:
12: /**
13: *
14: * @author root
15: */
16: public enum MessageLayout {
17: Strict, Lax, LaxTsFirst, LaxTsLast
18: }
|