Package org.apache.webdav.lib
Class Subscription
- java.lang.Object
-
- org.apache.webdav.lib.Subscription
-
public class Subscription extends java.lang.Object
Object that holds information about a single WebDAV subscription.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DELETE_NOTIFICATION
static java.lang.String
MOVE_NOTIFICATION
static java.lang.String
NEW_MEMBER_NOTIFICATION
static java.lang.String
UPDATE_NOTIFICATION
-
Constructor Summary
Constructors Constructor Description Subscription(java.lang.String path, int id, java.lang.String callback, long lifetime, java.lang.String contentLocation, java.lang.String notificationType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCallback()
java.lang.String
getContentLocation()
int
getId()
long
getLifetime()
java.lang.String
getNotificationType()
java.lang.String
getPath()
-
-
-
Field Detail
-
UPDATE_NOTIFICATION
public static final java.lang.String UPDATE_NOTIFICATION
- See Also:
- Constant Field Values
-
NEW_MEMBER_NOTIFICATION
public static final java.lang.String NEW_MEMBER_NOTIFICATION
- See Also:
- Constant Field Values
-
DELETE_NOTIFICATION
public static final java.lang.String DELETE_NOTIFICATION
- See Also:
- Constant Field Values
-
MOVE_NOTIFICATION
public static final java.lang.String MOVE_NOTIFICATION
- See Also:
- Constant Field Values
-
-