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 Object
Class representing a Change Sequence Number.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCount()
Returns the count part of the CSNString
getMod()
Returns the mod part of the CSNString
getSid()
Returns the sid part of the CSNString
getTime()
Returns the time part of the CSNString
getValue()
Returns the entire value of the CSN.
-
-
-
Constructor Detail
-
CSN
public CSN(String csn)
Creates a new CSN with the supplied string.- Parameters:
csn
- to parse
-
-
Method Detail
-
getValue
public String getValue()
Returns the entire value of the CSN.- Returns:
- entire value
-
getTime
public String getTime()
Returns the time part of the CSN- Returns:
- CSN time
-
getCount
public String getCount()
Returns the count part of the CSN- Returns:
- CSN count
-
getSid
public String getSid()
Returns the sid part of the CSN- Returns:
- CSN sid
-
getMod
public String getMod()
Returns the mod part of the CSN- Returns:
- CSN mod
-
-