01: /* Copyright 2001 The JA-SIG Collaborative. All rights reserved.
02: * See license distributed with this file and
03: * available online at http://www.uportal.org/license.html
04: */
05:
06: package org.jasig.portal;
07:
08: /**
09: * Stylesheet description for stylesheets performing theme transformation
10: * @author Peter Kharchenko
11: * @version $Revision: 34820 $
12: */
13:
14: public class ThemeStylesheetDescription extends
15: CoreXSLTStylesheetDescription {
16: // vector holds the list of first stage stylesheets that can be used with the current stylesheet
17: protected int structureStylesheetId;
18: protected String mimeType;
19: protected String samplePictureURI;
20: protected String sampleIconURI;
21: protected String deviceType;
22: protected String serializerName;
23: protected String customUPClassLocator;
24:
25: public int getStructureStylesheetId() {
26: return structureStylesheetId;
27: }
28:
29: public void setStructureStylesheetId(int ssid) {
30: structureStylesheetId = ssid;
31: }
32:
33: public String getMimeType() {
34: return this .mimeType;
35: }
36:
37: public void setMimeType(String type) {
38: this .mimeType = type;
39: }
40:
41: public String getDeviceType() {
42: return this .deviceType;
43: }
44:
45: public void setDeviceType(String type) {
46: this .deviceType = type;
47: }
48:
49: public String getSamplePictureURI() {
50: return this .samplePictureURI;
51: }
52:
53: public void setSamplePictureURI(String uri) {
54: this .samplePictureURI = uri;
55: }
56:
57: public String getSampleIconURI() {
58: return this .sampleIconURI;
59: }
60:
61: public void setSampleIconURI(String uri) {
62: this .sampleIconURI = uri;
63: }
64:
65: public String getSerializerName() {
66: return this .serializerName;
67: }
68:
69: public void setSerializerName(String name) {
70: this .serializerName = name;
71: }
72:
73: public String getCustomUserPreferencesManagerClass() {
74: return customUPClassLocator;
75: }
76:
77: public void setCustomUserPreferencesManagerClass(String classLocator) {
78: customUPClassLocator = classLocator;
79: }
80:
81: }
|