1
22
23 package com.liferay.portal.mirage.custom;
24
25 import com.sun.portal.cms.mirage.exception.CMSException;
26 import com.sun.portal.cms.mirage.exception.TemplateNotFoundException;
27 import com.sun.portal.cms.mirage.model.core.User;
28 import com.sun.portal.cms.mirage.model.custom.Content;
29 import com.sun.portal.cms.mirage.model.custom.VersionableContent;
30 import com.sun.portal.cms.mirage.service.custom.ContentService;
31
32 import java.util.List;
33
34
40 public class ContentServiceImpl implements ContentService {
41
42 public void createContent(Content content, String username)
43 throws CMSException, TemplateNotFoundException {
44 }
45
46 public void deleteContent(String contentName, String contentTypeName)
47 throws CMSException {
48 }
49
50 public Content getContentByNameAndType(
51 String contentName, String contentTypeName, String username)
52 throws CMSException {
53
54 return null;
55 }
56
57 public Content getContentByUUID(String uuid, User user)
58 throws CMSException {
59
60 return null;
61 }
62
63 public List<String> getContentNamesByType(String contentTypeName)
64 throws CMSException {
65
66 return null;
67 }
68
69 public void checkinContent(Content content, String username)
70 throws CMSException, TemplateNotFoundException {
71 }
72
73 public VersionableContent checkoutContent(
74 String contentName, String contentTypeName, String username)
75 throws CMSException {
76
77 return null;
78 }
79
80 public VersionableContent getContentByVersion(
81 String contentName, String contentTypeName, String versionName,
82 User user)
83 throws CMSException {
84
85 return null;
86 }
87
88 public String getContentURL(String appURL, String UUID) {
89 return null;
90 }
91
92 public List<Content> getContentsByType(
93 String contentTypeUUID, String username) throws CMSException {
94
95 return null;
96 }
97
98 public List<String> getVersionNames(
99 String contentName, String contentTypeName, User user)
100 throws CMSException {
101
102 return null;
103 }
104
105 public List<VersionableContent> getVersions(
106 String contentName, String contentTypeName, User user)
107 throws CMSException {
108
109 return null;
110 }
111
112 public void unCheckoutContent(
113 String contentName, String contentTypeName, String user)
114 throws CMSException {
115 }
116
117 public void updateContent(Content content, String username)
118 throws CMSException, TemplateNotFoundException {
119 }
120
121 }