| org.tigris.subversion.javahl.Notify
Notify | public interface Notify (Code) | | Subversion notification interface.
Implement this interface and implement the onNotify method
to provide a custom notification handler to the Modify
class.
If you need to pass extra information to the notification
handler then just add these to you implementing class
|
Inner Class :final public static class Action implements NotifyAction | |
Inner Class :final public static class Status implements NotifyStatus | |
Method Summary | |
public void | onNotify(String path, int action, int kind, String mimeType, int contentState, int propState, long revision) Handler for Subversion notifications. |
onNotify | public void onNotify(String path, int action, int kind, String mimeType, int contentState, int propState, long revision)(Code) | | Handler for Subversion notifications.
Override this function to allow Subversion to
send notifications
Parameters: path - on which action happen Parameters: action - subversion action, see svn_wc_notify_action_t Parameters: kind - node kind of path after action occurred Parameters: mimeType - mime type of path after action occurred Parameters: contentState - state of content after action occurred Parameters: propState - state of properties after action occurred Parameters: revision - revision number after action occurred |
|
|