Package org.apache.subversion.javahl
Class ReposNotifyInformation
- java.lang.Object
-
- java.util.EventObject
-
- org.apache.subversion.javahl.ReposNotifyInformation
-
- All Implemented Interfaces:
java.io.Serializable
public class ReposNotifyInformation extends java.util.EventObject
The event passed to theReposNotifyCallback.onNotify(org.apache.subversion.javahl.ReposNotifyInformation)
API to notifyISVNClient
of relevant events.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ReposNotifyInformation.Action
The type of action triggering the notificationstatic class
ReposNotifyInformation.NodeAction
-
Constructor Summary
Constructors Constructor Description ReposNotifyInformation(ReposNotifyInformation.Action action, long revision, java.lang.String warning, long shard, long newRevision, long oldRevision, ReposNotifyInformation.NodeAction nodeAction, java.lang.String path)
This constructor is to be used by the native code.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ReposNotifyInformation.Action
getAction()
long
getNewRevision()
ReposNotifyInformation.NodeAction
getNodeAction()
long
getOldRevision()
java.lang.String
getPath()
long
getRevision()
long
getShard()
java.lang.String
getWarning()
-
-
-
Constructor Detail
-
ReposNotifyInformation
public ReposNotifyInformation(ReposNotifyInformation.Action action, long revision, java.lang.String warning, long shard, long newRevision, long oldRevision, ReposNotifyInformation.NodeAction nodeAction, java.lang.String path)
This constructor is to be used by the native code.- Parameters:
action
- TheReposNotifyInformation.Action
which triggered this event.revision
- potentially the revision.
-
-
Method Detail
-
getAction
public ReposNotifyInformation.Action getAction()
- Returns:
- The
ReposNotifyInformation.Action
which triggered this event.
-
getRevision
public long getRevision()
- Returns:
- The revision for the item.
-
getWarning
public java.lang.String getWarning()
- Returns:
- The warning text.
-
getShard
public long getShard()
-
getNewRevision
public long getNewRevision()
-
getOldRevision
public long getOldRevision()
-
getNodeAction
public ReposNotifyInformation.NodeAction getNodeAction()
-
getPath
public java.lang.String getPath()
-
-