1
22
23
41
42 package com.liferay.portal.mirage.custom;
43
44 import com.sun.portal.cms.mirage.model.custom.Content;
45 import com.sun.portal.cms.mirage.model.custom.ContentType;
46 import com.sun.portal.cms.mirage.model.custom.OptionalCriteria;
47 import com.sun.portal.cms.mirage.model.custom.VersionableContent;
48 import com.sun.portal.cms.mirage.model.search.SearchCriteria;
49 import com.sun.portal.cms.mirage.service.custom.ContentService;
50
51 import java.io.InputStream;
52
53 import java.util.List;
54
55
63 public class ContentServiceImpl implements ContentService {
64
65 public void checkinContent(Content content) {
66 throw new UnsupportedOperationException();
67 }
68
69 public VersionableContent checkoutContent(
70 String contentName, String contentTypeUUID) {
71
72 throw new UnsupportedOperationException();
73 }
74
75 public int contentSearchCount(
76 ContentType contentType, SearchCriteria searchCriteria) {
77
78 throw new UnsupportedOperationException();
79 }
80
81 public int contentSearchCount(SearchCriteria searchCriteria) {
82 throw new UnsupportedOperationException();
83 }
84
85 public void createContent(Content content) {
86 throw new UnsupportedOperationException();
87 }
88
89 public void deleteContent(Content content) {
90 throw new UnsupportedOperationException();
91 }
92
93 public void deleteContent(String contentName, String contentTypeUUID) {
94 throw new UnsupportedOperationException();
95 }
96
97 public Content getContent(Content content, OptionalCriteria criteria) {
98 throw new UnsupportedOperationException();
99 }
100
101 public Content getContentByNameAndType(
102 String contentName, String contentTypeUUID) {
103
104 throw new UnsupportedOperationException();
105 }
106
107 public Content getContentByNameTypeNameAndCategory(
108 String contentName, String contentTypeName, String categoryName) {
109
110 throw new UnsupportedOperationException();
111 }
112
113 public Content getContentByUUID(String uuid) {
114 throw new UnsupportedOperationException();
115 }
116
117 public VersionableContent getContentByVersion(
118 String contentName, String contentTypeUUID, String versionName) {
119
120 throw new UnsupportedOperationException();
121 }
122
123 public List<String> getContentNamesByType(String contentTypeUUID) {
124 throw new UnsupportedOperationException();
125 }
126
127 public List<Content> getContentsByType(String contentTypeUUID) {
128 throw new UnsupportedOperationException();
129 }
130
131 public String getContentURL(String appURL, String UUID) {
132 throw new UnsupportedOperationException();
133 }
134
135 public List<String> getVersionNames(
136 String contentName, String contentTypeUUID) {
137
138 throw new UnsupportedOperationException();
139 }
140
141 public List<VersionableContent> getVersions(
142 String contentName, String contentTypeUUID) {
143
144 throw new UnsupportedOperationException();
145 }
146
147 public List<Content> searchContents(SearchCriteria searchCriteria) {
148 throw new UnsupportedOperationException();
149 }
150
151 public List<Content> searchContentsByType(
152 ContentType contentType, SearchCriteria searchCriteria) {
153
154 throw new UnsupportedOperationException();
155 }
156
157 public void unCheckoutContent(String contentName, String contentTypeUUID) {
158 throw new UnsupportedOperationException();
159 }
160
161 public void updateContent(Content content) {
162 throw new UnsupportedOperationException();
163 }
164
165 public void updateContent(Content content, OptionalCriteria criteria) {
166 throw new UnsupportedOperationException();
167 }
168
169 public void updateFileField(
170 String contentUUID, String fieldName,
171 InputStream updatedFileInputStream) {
172
173 throw new UnsupportedOperationException();
174 }
175
176 }