1
19
20 package com.liferay.portal.model;
21
22 import java.io.IOException;
23 import java.io.Serializable;
24
25 import java.util.List;
26
27 import javax.servlet.ServletContext;
28
29
35 public interface LayoutTemplate
36 extends Comparable<LayoutTemplate>, Plugin, Serializable {
37
38 public String getLayoutTemplateId();
39
40 public boolean getStandard();
41
42 public boolean isStandard();
43
44 public void setStandard(boolean standard);
45
46 public String getThemeId();
47
48 public void setThemeId(String themeId);
49
50 public String getName();
51
52 public void setName(String name);
53
54 public String getTemplatePath();
55
56 public void setTemplatePath(String templatePath);
57
58 public String getWapTemplatePath();
59
60 public void setWapTemplatePath(String wapWapTemplatePath);
61
62 public String getThumbnailPath();
63
64 public void setThumbnailPath(String thumbnailPath);
65
66 public String getContent();
67
68 public void setContent(String content);
69
70 public boolean hasSetContent();
71
72 public String getUncachedContent() throws IOException;
73
74 public String getWapContent();
75
76 public void setWapContent(String wapContent);
77
78 public boolean hasSetWapContent();
79
80 public String getUncachedWapContent() throws IOException;
81
82 public List<String> getColumns();
83
84 public void setColumns(List<String> columns);
85
86 public void setServletContext(ServletContext servletContext);
87
88 public String getServletContextName();
89
90 public void setServletContextName(String servletContextName);
91
92 public boolean getWARFile();
93
94 public boolean isWARFile();
95
96 public String getContextPath();
97
98 }