01: /*
02: * Copyright 1999-2002,2004 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: package org.jasig.portal.serialize;
18:
19: /**
20: * @version $Revision: 36559 $ $Date: 2006-04-28 11:38:13 -0700 (Fri, 28 Apr 2006) $
21: * @author <a href="mailto:arkin@intalio.com">Assaf Arkin</a>
22: * @see OutputFormat
23: */
24: public final class Method {
25:
26: /**
27: * The output method for XML documents.
28: */
29: public static final String XML = "xml";
30:
31: /**
32: * The output method for HTML documents.
33: */
34: public static final String HTML = "html";
35:
36: /**
37: * The output method for HTML documents as XHTML.
38: */
39: public static final String XHTML = "xhtml";
40:
41: /**
42: * The output method for text documents.
43: */
44: public static final String TEXT = "text";
45:
46: /**
47: * The output method for FO documents as PDF.
48: */
49: public static final String FOP = "fop";
50:
51: }
|