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