1
7
8 package com.liferay.client.portlet.tags.service.http;
9
10 public interface TagsAssetServiceSoap extends java.rmi.Remote {
11 public void deleteAsset(long assetId) throws java.rmi.RemoteException;
12 public com.liferay.client.portlet.tags.model.TagsAssetSoap updateAsset(java.lang.String className, long classPK, java.lang.String[] entryNames, 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) throws java.rmi.RemoteException;
13 public com.liferay.client.portlet.tags.model.TagsAssetSoap getAsset(long assetId) throws java.rmi.RemoteException;
14 public com.liferay.client.portlet.tags.model.TagsAssetType[] getAssetTypes(java.lang.String languageId) throws java.rmi.RemoteException;
15 public com.liferay.client.portlet.tags.model.TagsAssetDisplay[] getCompanyAssetDisplays(long companyId, int begin, int end, java.lang.String languageId) throws java.rmi.RemoteException;
16 public com.liferay.client.portlet.tags.model.TagsAssetSoap[] getCompanyAssets(long companyId, int begin, int end) throws java.rmi.RemoteException;
17 public int getCompanyAssetsCount(long companyId) throws java.rmi.RemoteException;
18 public com.liferay.client.portlet.tags.model.TagsAssetDisplay[] searchAssetDisplays(long companyId, java.lang.String portletId, java.lang.String keywords, java.lang.String languageId, int begin, int end) throws java.rmi.RemoteException;
19 public int searchAssetDisplaysCount(long companyId, java.lang.String portletId, java.lang.String keywords, java.lang.String languageId) throws java.rmi.RemoteException;
20 }
21