Uses of Interface
dk.netarkivet.archive.distribute.ArchiveMessageVisitor

Packages that use ArchiveMessageVisitor
dk.netarkivet.archive.arcrepository.bitpreservation   
dk.netarkivet.archive.arcrepository.distribute   
dk.netarkivet.archive.bitarchive.distribute   
dk.netarkivet.archive.checksum.distribute   
dk.netarkivet.archive.distribute   
 

Uses of ArchiveMessageVisitor in dk.netarkivet.archive.arcrepository.bitpreservation
 

Methods in dk.netarkivet.archive.arcrepository.bitpreservation with parameters of type ArchiveMessageVisitor
 void AdminDataMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.
 

Uses of ArchiveMessageVisitor in dk.netarkivet.archive.arcrepository.distribute
 

Classes in dk.netarkivet.archive.arcrepository.distribute that implement ArchiveMessageVisitor
 class ArcRepositoryServer
          Listens on the queue "TheArcrepos" and submits the messages to a corresponding visit method on BitarchiveClient.
 

Methods in dk.netarkivet.archive.arcrepository.distribute with parameters of type ArchiveMessageVisitor
 void StoreMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.
 

Uses of ArchiveMessageVisitor in dk.netarkivet.archive.bitarchive.distribute
 

Classes in dk.netarkivet.archive.bitarchive.distribute that implement ArchiveMessageVisitor
 class BitarchiveMonitorServer
          Class representing message handling for the monitor for bitarchives.
 class BitarchiveServer
          Bitarchive container responsible for processing the different classes of message which can be received by a bitarchive and returning appropriate data.
 

Methods in dk.netarkivet.archive.bitarchive.distribute with parameters of type ArchiveMessageVisitor
 void GetFileMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.
 void BatchEndedMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.
 void RemoveAndGetFileMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.
 void BatchReplyMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.
 void HeartBeatMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.
 void UploadMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.
 void GetMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.
 void BatchMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.
 

Uses of ArchiveMessageVisitor in dk.netarkivet.archive.checksum.distribute
 

Classes in dk.netarkivet.archive.checksum.distribute that implement ArchiveMessageVisitor
 class ChecksumArchiveServer
          Any subclass must be invoked through a method called 'getInstance'.
 class ChecksumFileServer
          The server for the ChecksumFileApplication.
 

Methods in dk.netarkivet.archive.checksum.distribute with parameters of type ArchiveMessageVisitor
 void GetChecksumMessage.accept(ArchiveMessageVisitor v)
          Accept this message.
 void GetAllFilenamesMessage.accept(ArchiveMessageVisitor v)
          Accept this message.
 void GetAllChecksumsMessage.accept(ArchiveMessageVisitor v)
          Accept visitation.
 void CorrectMessage.accept(ArchiveMessageVisitor v)
          Accept this message.
 

Uses of ArchiveMessageVisitor in dk.netarkivet.archive.distribute
 

Classes in dk.netarkivet.archive.distribute that implement ArchiveMessageVisitor
 class ArchiveMessageHandler
          This default message handler shields of all unimplemented methods from the ArchiveMessageVisitor interface.
 

Methods in dk.netarkivet.archive.distribute with parameters of type ArchiveMessageVisitor
abstract  void ArchiveMessage.accept(ArchiveMessageVisitor v)
          Should be implemented as a part of the visitor pattern.