be.re.webdav
Class Client.Event

java.lang.Object
  extended by be.re.webdav.Client.Event
Enclosing class:
Client

public static class Client.Event
extends Object

Represents one event line in an audit trail.

Author:
Werner Donné

Field Summary
 String additionalInfo
          Optional additional information about the event.
 long occurrence
          The timestamp of the event in milliseconds since 1 January 1970 UTC.
 String operation
          One of the operations defined in Constants.EVENT_*.
 String path
          An absolute path in the repository.
 URL user
          The URL denoting the user that performed the operation.
 String username
          The name of the user that performed the operation.
 
Constructor Summary
Client.Event()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

additionalInfo

public String additionalInfo
Optional additional information about the event.


occurrence

public long occurrence
The timestamp of the event in milliseconds since 1 January 1970 UTC. It defaults to -1, which means the time is not available.


operation

public String operation
One of the operations defined in Constants.EVENT_*.

See Also:
Constants

path

public String path
An absolute path in the repository.


user

public URL user
The URL denoting the user that performed the operation.


username

public String username
The name of the user that performed the operation.

Constructor Detail

Client.Event

public Client.Event()