1
7
8 package com.liferay.client.soap.portlet.asset.service.http;
9
10 public interface AssetEntryServiceSoap extends java.rmi.Remote {
11 public com.liferay.client.soap.portlet.asset.model.AssetEntrySoap updateEntry(long groupId, java.lang.String className, long classPK, long[] categoryIds, java.lang.String[] tagNames, boolean visible, java.util.Calendar startDate, java.util.Calendar endDate, java.util.Calendar publishDate, java.util.Calendar expirationDate, java.lang.String mimeType, java.lang.String title, java.lang.String description, java.lang.String summary, java.lang.String url, int height, int width, int priority, boolean sync) throws java.rmi.RemoteException;
12 public com.liferay.client.soap.portlet.asset.model.AssetEntrySoap[] getCompanyEntries(long companyId, int start, int end) throws java.rmi.RemoteException;
13 public int getCompanyEntriesCount(long companyId) throws java.rmi.RemoteException;
14 public java.lang.String getCompanyEntriesRSS(long companyId, int max, java.lang.String type, double version, java.lang.String displayStyle, java.lang.String feedURL, java.lang.String tagURL) throws java.rmi.RemoteException;
15 public com.liferay.client.soap.portlet.asset.model.AssetEntryDisplay[] getCompanyEntryDisplays(long companyId, int start, int end, java.lang.String languageId) throws java.rmi.RemoteException;
16 public int getEntriesCount(com.liferay.client.soap.portlet.asset.service.persistence.AssetEntryQuery entryQuery) throws java.rmi.RemoteException;
17 public java.lang.String getEntriesRSS(com.liferay.client.soap.portlet.asset.service.persistence.AssetEntryQuery entryQuery, java.lang.String type, double version, java.lang.String displayStyle, java.lang.String feedURL, java.lang.String tagURL) throws java.rmi.RemoteException;
18 public com.liferay.client.soap.portlet.asset.model.AssetEntrySoap incrementViewCounter(java.lang.String className, long classPK) throws java.rmi.RemoteException;
19 public com.liferay.client.soap.portlet.asset.model.AssetEntryDisplay[] searchEntryDisplays(long companyId, java.lang.String portletId, java.lang.String keywords, java.lang.String languageId, int start, int end) throws java.rmi.RemoteException;
20 public int searchEntryDisplaysCount(long companyId, java.lang.String portletId, java.lang.String keywords, java.lang.String languageId) throws java.rmi.RemoteException;
21 public com.liferay.client.soap.portlet.asset.model.AssetEntrySoap getEntry(long entryId) throws java.rmi.RemoteException;
22 public void deleteEntry(long entryId) throws java.rmi.RemoteException;
23 public com.liferay.client.soap.portlet.asset.model.AssetEntrySoap[] getEntries(com.liferay.client.soap.portlet.asset.service.persistence.AssetEntryQuery entryQuery) throws java.rmi.RemoteException;
24 }
25