1
22
23 package com.liferay.portal.service;
24
25
51 public interface PortletPreferencesLocalService {
52 public com.liferay.portal.model.PortletPreferences addPortletPreferences(
53 com.liferay.portal.model.PortletPreferences model)
54 throws com.liferay.portal.SystemException;
55
56 public java.util.List dynamicQuery(
57 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
58 throws com.liferay.portal.SystemException;
59
60 public java.util.List dynamicQuery(
61 com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
62 int begin, int end) throws com.liferay.portal.SystemException;
63
64 public com.liferay.portal.model.PortletPreferences updatePortletPreferences(
65 com.liferay.portal.model.PortletPreferences model)
66 throws com.liferay.portal.SystemException;
67
68 public void deletePortletPreferences(long ownerId, int ownerType, long plid)
69 throws com.liferay.portal.SystemException,
70 com.liferay.portal.PortalException;
71
72 public void deletePortletPreferences(long ownerId, int ownerType,
73 long plid, java.lang.String portletId)
74 throws com.liferay.portal.SystemException,
75 com.liferay.portal.PortalException;
76
77 public javax.portlet.PortletPreferences getDefaultPreferences(
78 long companyId, java.lang.String portletId)
79 throws com.liferay.portal.SystemException,
80 com.liferay.portal.PortalException;
81
82 public java.util.List getPortletPreferences()
83 throws com.liferay.portal.SystemException;
84
85 public java.util.List getPortletPreferences(long plid)
86 throws com.liferay.portal.SystemException;
87
88 public java.util.List getPortletPreferences(long ownerId, int ownerType,
89 long plid)
90 throws com.liferay.portal.SystemException,
91 com.liferay.portal.PortalException;
92
93 public com.liferay.portal.model.PortletPreferences getPortletPreferences(
94 long ownerId, int ownerType, long plid, java.lang.String portletId)
95 throws com.liferay.portal.SystemException,
96 com.liferay.portal.PortalException;
97
98 public javax.portlet.PortletPreferences getPreferences(
99 com.liferay.portal.model.PortletPreferencesIds portletPreferencesIds)
100 throws com.liferay.portal.SystemException,
101 com.liferay.portal.PortalException;
102
103 public javax.portlet.PortletPreferences getPreferences(long companyId,
104 long ownerId, int ownerType, long plid, java.lang.String portletId)
105 throws com.liferay.portal.SystemException,
106 com.liferay.portal.PortalException;
107
108 public javax.portlet.PortletPreferences getPreferences(long companyId,
109 long ownerId, int ownerType, long plid, java.lang.String portletId,
110 java.lang.String defaultPreferences)
111 throws com.liferay.portal.SystemException,
112 com.liferay.portal.PortalException;
113
114 public com.liferay.portal.model.PortletPreferences updatePreferences(
115 long ownerId, int ownerType, long plid, java.lang.String portletId,
116 javax.portlet.PortletPreferences prefs)
117 throws com.liferay.portal.SystemException,
118 com.liferay.portal.PortalException;
119 }