|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.jalios.jcms.BasicStoreListener com.jalios.jcms.WeakLinkManager
public class WeakLinkManager
This class manages the index of weak references on publications. A weak reference is either a wiki link (e.g. [[Title]]) or the URL of a publication (display.jsp?id=xxx). The index is managed through a map (pub, set of referrer).
Field Summary | |
---|---|
static String |
REVISION
|
Method Summary | |
---|---|
Set<Publication> |
extractPubSetFromImg(String text)
Returns the set of publication referenced through <img> tag in the given text. |
Set<Publication> |
extractPubSetFromWysiwyg(String text)
|
Set<Publication> |
extractWeakLinkSet(Publication pub)
Returns the set of publication weakly referenced by the given publication. |
static WeakLinkManager |
getInstance()
|
Map<String,Set<Publication>> |
getUrlMap()
Returns the map of urls referenced by publications. |
Map<String,Set<Publication>> |
getUrlMap(Workspace ws,
Member mbr)
Returns the map of urls referenced by publications of the given workspace. |
Set<Publication> |
getUrlReferrerSet(String url)
Returns all the publications referring the given URL. |
void |
handleCommitUpdate(Storable storable,
Storable oldStorable,
boolean firstTime)
This method gets called when after a storable has been updated. |
void |
handleCreate(Storable storable,
boolean firstTime)
This method gets called when a storable is created. |
void |
handleDelete(Storable storable,
boolean firstTime)
This method gets called when a storable is deleted. |
void |
indexPublication(Publication referrer)
Indexes the given publication. |
void |
init()
Scans and indexes all existing publications then register a StoreListener (myself) to update the index at each change. |
void |
reindexPublication(Publication referrer)
Reindexes the given publication. |
void |
unindexPublication(Publication referrer)
Unindexes the given publication. |
Methods inherited from class com.jalios.jcms.BasicStoreListener |
---|
handlePrepareUpdate, init |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String REVISION
Method Detail |
---|
public static WeakLinkManager getInstance()
public void init()
public void indexPublication(Publication referrer)
referrer
- the publication to be indexed.public void unindexPublication(Publication referrer)
referrer
- the publication to be unindexed.public void reindexPublication(Publication referrer)
referrer
- the publication to be reindexed.public Set<Publication> getUrlReferrerSet(String url)
url
- the referee URL
public Map<String,Set<Publication>> getUrlMap()
public Map<String,Set<Publication>> getUrlMap(Workspace ws, Member mbr)
ws
- the workspacembr
- the member used for filtering
public Set<Publication> extractWeakLinkSet(Publication pub)
pub
- the publication
public void handleCreate(Storable storable, boolean firstTime)
StoreListener
handleCreate
in interface StoreListener
handleCreate
in class BasicStoreListener
storable
- the storablefirstTime
- true if it is the first time this operation is processedStoreListener.handleCreate(Storable, boolean)
public void handleCommitUpdate(Storable storable, Storable oldStorable, boolean firstTime)
StoreListener
handleCommitUpdate
in interface StoreListener
handleCommitUpdate
in class BasicStoreListener
storable
- the storable, this instance is the object that was created
at first and that will be stored in jcms until deletion of the storable
with this ID.
You should always manipulate this object if you maintain any index.oldStorable
- the previous version of the storable, it is a clone, do not use
in any index, it should only be used to access old values.firstTime
- true if it is the first time this operation is processedStoreListener.handleCommitUpdate(Storable, Storable, boolean)
public void handleDelete(Storable storable, boolean firstTime)
StoreListener
handleDelete
in interface StoreListener
handleDelete
in class BasicStoreListener
storable
- the storablefirstTime
- true if it is the first time this operation is processedStoreListener.handleDelete(Storable, boolean)
public Set<Publication> extractPubSetFromWysiwyg(String text)
public Set<Publication> extractPubSetFromImg(String text)
text
- the text
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |