Uses of Class
com.jalios.jstore.Stamp

Packages that use Stamp
com.jalios.jcms Contains the core JCMS classes. 
com.jalios.jcms.handler Contains the javabean classes uses to process HTTP request (aka form handlers). 
com.jalios.jcms.tools This package contains various tools used for/by JCMS. 
com.jalios.jstore Contains JStore core classes. 
com.jalios.jstore.jsync Contains JSync core classes. 
 

Uses of Stamp in com.jalios.jcms
 

Fields in com.jalios.jcms declared as Stamp
protected  Stamp JcmsCleanFilter.beginStamp
           
protected  Stamp JcmsCleanFilter.endStamp
           
 

Methods in com.jalios.jcms with parameters of type Stamp
 void JcmsCleanFilter.setBeginStamp(Stamp startStamp)
           
 void JcmsCleanFilter.setEndStamp(Stamp endStamp)
           
 

Uses of Stamp in com.jalios.jcms.handler
 

Methods in com.jalios.jcms.handler that return Stamp
 Stamp StoreCleanerHandler.getAvailableBeginMilestone()
           
 Stamp StoreCleanerHandler.getAvailableBeginStamp()
           
 Stamp StoreCleanerHandler.getAvailableEndMilestone()
           
 Stamp StoreCleanerHandler.getAvailableEndStamp()
           
 

Methods in com.jalios.jcms.handler that return types with arguments of type Stamp
 List<Stamp> StoreCleanerHandler.getMilestoneValueList()
           
 

Uses of Stamp in com.jalios.jcms.tools
 

Fields in com.jalios.jcms.tools declared as Stamp
 Stamp StoreMergeParameters.gcs
           
 

Uses of Stamp in com.jalios.jstore
 

Methods in com.jalios.jstore that return Stamp
 Stamp StampTable.getBehindStamp(StampTable st)
          Gets the most behind stamp of this StampTable according the given StampTable.
 Stamp StampTable.getBehindStamp(StampTable st, boolean useRealStamp)
          Gets the most behind stamp of this StampTable according the given StampTable.
 Stamp SyncManager.getGreatestCommonStamp()
           
 Stamp LogManagerLoadHandler.getGreatestStamp()
          Returns the greatest stamp read (this include real stamp but also ID of StorableLogEntry).
 Stamp StampTable.getMaxStamp()
          Returns the highest stamp contains in this StampTable
 Stamp StampTable.getMinStamp()
          Returns the smallest stamp contains in this StampTable
 Stamp Store.getProgressStamp()
          Return the greatest stamp of this urid
 Stamp Store.getProgressStamp(String urid)
          Return the greatest stamp of the given urid
 Stamp StampManager.getProgressStamp(String urid)
          Returns the greatest stamp for a given urid.
 Stamp StampTable.getRealStamp(String urid)
          Returns the stamps to which this StampTable maps the specified urid.
 Stamp TemporalStampManager.getStamp()
          Return a new stamp.
 Stamp Store.getStamp()
          Return a new stamp.
abstract  Stamp StampManager.getStamp()
          Return a new stamp.
 Stamp LogicalStampManager.getStamp()
          Return a new stamp.
 Stamp LogEntry.getStamp()
          Returns the stamp of this LogEntry
 Stamp StampTable.getStamp(String urid)
          Returns the stamps to which this StampTable maps the specified urid.
static Stamp Stamp.max(Stamp s1, Stamp s2)
          Return the greater of two stamps
static Stamp Stamp.min(Stamp s1, Stamp s2)
          Return the smaller of two stamps
 

Methods in com.jalios.jstore that return types with arguments of type Stamp
 Map<String,Stamp> StampTable.getMap()
           
 

Methods in com.jalios.jstore with parameters of type Stamp
 int StampTable.compareStamp(Stamp stamp)
          Compares the given stamp with the ones in the table.
 int Stamp.compareTo(Stamp stamp)
          Compares this stamp with the specified stamp for order.
 int Store.generateDelta(OutputStream out, Stamp startStamp, boolean includeStart)
          Ouput in a given stream all the log operations having a stamp greater that the given one.
 int Store.getStampLineNumber(Stamp stamp)
          Returns the line number in the store file of the given stamp.
 boolean StampTable.isGreaterThan(Stamp stamp, boolean isStrict)
          Check if this StampTable contains at least one stamp greater than the given stamp.
 boolean StampTable.isGreaterThanStamp(Stamp other, boolean isStrict)
          Checks if this StampTable contains a stamp greater than the given one.
 boolean StampTable.isLesserThan(Stamp stamp, boolean isStrict)
          Check if all the stamps of this StampTable are lesser than the given stamp.
 boolean StampTable.isLesserThanStamp(Stamp other, boolean isStrict)
          Checks if this StampTable contains a stamp lesser than the given one.
static Stamp Stamp.max(Stamp s1, Stamp s2)
          Return the greater of two stamps
static Stamp Stamp.min(Stamp s1, Stamp s2)
          Return the smaller of two stamps
 void Store.parseLog(LogManagerHandler handler, Stamp stamp)
          Parse the store with the given handler from the given stamp
 void StampTable.putStamp(Stamp stamp)
          Puts this stamp in the StampTable
 void SyncManager.setLastSyncStamp(Stamp lastSyncStamp)
           
 void LogEntry.setStamp(Stamp stamp)
          Sets the stamp of this LogEntry
 void TemporalStampManager.update(Stamp stamp, boolean updatePT)
          Updates the clock
 void StampManager.update(Stamp stamp, boolean updatePT)
          Updates the clock and the progressTable
 void LogicalStampManager.update(Stamp stamp, boolean updatePT)
          Updates the clock
 void Store.updateStamp(Stamp stamp)
          Update the current stamp value (and the progress table)
 void Store.updateStamp(Stamp stamp, boolean updatePT)
          Update the current stamp value
 void StoreCleaner.updateStore(Collection<Storable> collection, Stamp stamp)
          Write all updates for the given collection
 void StoreCleaner.updateStore(Storable storable, Stamp stamp)
          Write an update of a given Storable already created
If the Storable need an Update then doUpdate and remove it from the Update Table
If the Storable doesn't need an update but exist in the Store (warning retrieve it by it's Id) then do an update.
 void StoreCleaner.writeStore(Collection<Storable> collection, Stamp stamp)
          Write create of a collection of Storable then prepare update
 void StoreCleaner.writeStore(Collection<Storable> collection, Stamp stamp, boolean sort)
          Write create of a collection of Storable then prepare update
 void StoreCleaner.writeStore(Collection<Storable> collection, Stamp stamp, boolean sort, boolean overrideId)
          Write create of a collection of Storable then prepare update
 void StoreCleaner.writeStore(Storable storable, Stamp stamp)
          Write create of a Storable then prepare update
 void StoreCleaner.writeStore(Storable storable, Stamp stamp, boolean overrideId)
          Write create of a Storable then prepare update
 

Method parameters in com.jalios.jstore with type arguments of type Stamp
 void CleanFilter.cleanMergeMap(Map<String,TreeSet<Stamp>> mergeMap)
          This method is called to clean the merge map.
 

Constructors in com.jalios.jstore with parameters of type Stamp
LogManagerSyncHandler(Stamp syncStamp)
           
LogManagerSyncHandler(Stamp syncStamp, boolean removeCUDSeq, StampTable progressTable)
           
LogManagerSyncHandler(Stamp syncStamp, StampTable st)
           
StoreCleaner(String file, Stamp stamp)
          Create a StoreCleaner with a starting specific stamp
StoreCleaner(String file, Stamp stamp, boolean overrideId)
          Create a Store Cleaner that may override IDs of objects and with starting Stamp
StoreCleaner(String file, Stamp stamp, boolean overrideId, boolean doClean)
          Create a Store Cleaner that may override IDs of objects and with starting Stamp
StoreCleaner(String file, Stamp stamp, boolean overrideId, boolean doClean, String mainLang, String convLang)
           
 

Uses of Stamp in com.jalios.jstore.jsync
 

Methods in com.jalios.jstore.jsync that return Stamp
 Stamp JSyncReplica.getProgressStamp()
           
 

Methods in com.jalios.jstore.jsync with parameters of type Stamp
 String Message.stampToXml(Stamp stamp)
           
 



Copyright © 2001-2010 Jalios SA. All Rights Reserved.