public interface LinksService
Modifier and Type | Method and Description |
---|---|
LinkInfo |
createLink(String siteShortName,
String title,
String description,
String url,
boolean internal)
Creates a new
LinkInfo in the given site, with the
specified settings |
void |
deleteLink(LinkInfo link)
Deletes an existing
LinkInfo from the repository |
org.alfresco.query.PagingResults<LinkInfo> |
findLinks(String siteShortName,
String user,
Date from,
Date to,
String tag,
org.alfresco.query.PagingRequest paging)
Finds all
LinkInfo instances indexed in the repository
for the given site, created by the specified user in the specified
date range, with the given tag |
LinkInfo |
getLink(String siteShortName,
String linkName)
Retrieves an existing
LinkInfo from the repository |
org.alfresco.query.PagingResults<LinkInfo> |
listLinks(String siteShortName,
Date from,
Date to,
org.alfresco.query.PagingRequest paging)
Retrieves all
LinkInfo instances in the repository
for the given site, created in the specified date range |
org.alfresco.query.PagingResults<LinkInfo> |
listLinks(String siteShortName,
org.alfresco.query.PagingRequest paging)
Retrieves all
LinkInfo instances in the repository
for the given site. |
org.alfresco.query.PagingResults<LinkInfo> |
listLinks(String siteShortName,
String user,
org.alfresco.query.PagingRequest paging)
Retrieves all
LinkInfo instances in the repository
for the given site and the specified user. |
LinkInfo |
updateLink(LinkInfo link)
Updates an existing
LinkInfo in the repository. |
@NotAuditable LinkInfo createLink(String siteShortName, String title, String description, String url, boolean internal)
LinkInfo
in the given site, with the
specified settingsLinkInfo
@NotAuditable LinkInfo updateLink(LinkInfo link)
LinkInfo
in the repository.LinkInfo
@NotAuditable void deleteLink(LinkInfo link)
LinkInfo
from the repository@NotAuditable LinkInfo getLink(String siteShortName, String linkName)
LinkInfo
from the repository@NotAuditable org.alfresco.query.PagingResults<LinkInfo> listLinks(String siteShortName, org.alfresco.query.PagingRequest paging)
LinkInfo
instances in the repository
for the given site.@NotAuditable org.alfresco.query.PagingResults<LinkInfo> listLinks(String siteShortName, String user, org.alfresco.query.PagingRequest paging)
LinkInfo
instances in the repository
for the given site and the specified user.@NotAuditable org.alfresco.query.PagingResults<LinkInfo> listLinks(String siteShortName, Date from, Date to, org.alfresco.query.PagingRequest paging)
LinkInfo
instances in the repository
for the given site, created in the specified date range@NotAuditable org.alfresco.query.PagingResults<LinkInfo> findLinks(String siteShortName, String user, Date from, Date to, String tag, org.alfresco.query.PagingRequest paging)
LinkInfo
instances indexed in the repository
for the given site, created by the specified user in the specified
date range, with the given tagCopyright © 2005–2017 Alfresco Software. All rights reserved.