Package org.ldaptive.control.util
Class SyncReplCookie.CSN
- java.lang.Object
-
- org.ldaptive.control.util.SyncReplCookie.CSN
-
- Enclosing class:
- SyncReplCookie
public static class SyncReplCookie.CSN extends java.lang.Object
Class representing a Change Sequence Number.
-
-
Constructor Summary
Constructors Constructor Description CSN(java.lang.String csn)
Creates a new CSN with the supplied string.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCount()
Returns the count part of the CSNjava.lang.String
getMod()
Returns the mod part of the CSNjava.lang.String
getSid()
Returns the sid part of the CSNjava.lang.String
getTime()
Returns the time part of the CSNjava.lang.String
getValue()
Returns the entire value of the CSN.
-
-
-
Method Detail
-
getValue
public java.lang.String getValue()
Returns the entire value of the CSN.- Returns:
- entire value
-
getTime
public java.lang.String getTime()
Returns the time part of the CSN- Returns:
- CSN time
-
getCount
public java.lang.String getCount()
Returns the count part of the CSN- Returns:
- CSN count
-
getSid
public java.lang.String getSid()
Returns the sid part of the CSN- Returns:
- CSN sid
-
getMod
public java.lang.String getMod()
Returns the mod part of the CSN- Returns:
- CSN mod
-
-