Package org.ldaptive.ad.control
Class DirSyncControl
- java.lang.Object
-
- org.ldaptive.control.AbstractControl
-
- org.ldaptive.ad.control.DirSyncControl
-
- All Implemented Interfaces:
Control,RequestControl,ResponseControl
public class DirSyncControl extends AbstractControl implements RequestControl, ResponseControl
Request/response control for active directory synchronization. Control is defined as:dirSyncValue ::= SEQUENCE { flags INTEGER, maxAttributeCount INTEGER, cookie OCTET STRING }See http://msdn.microsoft.com/en-us/library/cc223347.aspx
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classDirSyncControl.CookieHandlerParse handler implementation for the cookie.static classDirSyncControl.FlagTypes of flags.private static classDirSyncControl.FlagHandlerParse handler implementation for the flag.private static classDirSyncControl.MaxAttrCountHandlerParse handler implementation for the maxAttributeCount.
-
Field Summary
Fields Modifier and Type Field Description private byte[]cookieserver generated cookie.private static byte[]EMPTY_COOKIEEmpty byte array used for null cookies.private longflagsflags.private static intHASH_CODE_SEEDhash value seed.private intmaxAttributeCountmaximum attribute count.static StringOIDOID of this control.-
Fields inherited from class org.ldaptive.control.AbstractControl
logger
-
-
Constructor Summary
Constructors Constructor Description DirSyncControl()Default constructor.DirSyncControl(boolean critical)Creates a new dir sync control.DirSyncControl(DirSyncControl.Flag[] f)Creates a new dir sync control.DirSyncControl(DirSyncControl.Flag[] f, boolean critical)Creates a new dir sync control.DirSyncControl(DirSyncControl.Flag[] f, byte[] value, boolean critical)Creates a new dir sync control.DirSyncControl(DirSyncControl.Flag[] f, byte[] value, int count, boolean critical)Creates a new dir sync control.DirSyncControl(DirSyncControl.Flag[] f, int count)Creates a new dir sync control.DirSyncControl(DirSyncControl.Flag[] f, int count, boolean critical)Creates a new dir sync control.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddecode(DERBuffer encoded)Initializes this response control with the supplied BER encoded data.byte[]encode()Provides the BER encoding of this control.booleanequals(Object o)byte[]getCookie()Returns the sync request cookie.longgetFlags()Returns the flags value.intgetMaxAttributeCount()Returns the maximum attribute count.inthashCode()Returns the hash code for this object.booleanhasValue()Returns whether the control has a value associated with it.voidsetCookie(byte[] value)Sets the sync request cookie.voidsetFlags(long l)Sets the flags.voidsetMaxAttributeCount(int count)Sets the maximum attribute count.StringtoString()-
Methods inherited from class org.ldaptive.control.AbstractControl
getCriticality, getOID
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.ldaptive.control.Control
getCriticality, getOID
-
-
-
-
Field Detail
-
OID
public static final String OID
OID of this control.- See Also:
- Constant Field Values
-
HASH_CODE_SEED
private static final int HASH_CODE_SEED
hash value seed.- See Also:
- Constant Field Values
-
EMPTY_COOKIE
private static final byte[] EMPTY_COOKIE
Empty byte array used for null cookies.
-
flags
private long flags
flags.
-
maxAttributeCount
private int maxAttributeCount
maximum attribute count.
-
cookie
private byte[] cookie
server generated cookie.
-
-
Constructor Detail
-
DirSyncControl
public DirSyncControl()
Default constructor.
-
DirSyncControl
public DirSyncControl(boolean critical)
Creates a new dir sync control.- Parameters:
critical- whether this control is critical
-
DirSyncControl
public DirSyncControl(DirSyncControl.Flag[] f)
Creates a new dir sync control.- Parameters:
f- request flags
-
DirSyncControl
public DirSyncControl(DirSyncControl.Flag[] f, boolean critical)
Creates a new dir sync control.- Parameters:
f- request flagscritical- whether this control is critical
-
DirSyncControl
public DirSyncControl(DirSyncControl.Flag[] f, int count)
Creates a new dir sync control.- Parameters:
f- request flagscount- maximum attribute count
-
DirSyncControl
public DirSyncControl(DirSyncControl.Flag[] f, int count, boolean critical)
Creates a new dir sync control.- Parameters:
f- request flagscount- maximum attribute countcritical- whether this control is critical
-
DirSyncControl
public DirSyncControl(DirSyncControl.Flag[] f, byte[] value, boolean critical)
Creates a new dir sync control.- Parameters:
f- request flagsvalue- dir sync cookiecritical- whether this control is critical
-
DirSyncControl
public DirSyncControl(DirSyncControl.Flag[] f, byte[] value, int count, boolean critical)
Creates a new dir sync control.- Parameters:
f- request flagsvalue- dir sync cookiecount- maximum attribute countcritical- whether this control is critical
-
-
Method Detail
-
hasValue
public boolean hasValue()
Description copied from interface:RequestControlReturns whether the control has a value associated with it.- Specified by:
hasValuein interfaceRequestControl- Returns:
- whether the control has a value
-
getFlags
public long getFlags()
Returns the flags value.- Returns:
- flags value
-
setFlags
public void setFlags(long l)
Sets the flags.- Parameters:
l- flags value
-
getMaxAttributeCount
public int getMaxAttributeCount()
Returns the maximum attribute count.- Returns:
- maximum attribute count
-
setMaxAttributeCount
public void setMaxAttributeCount(int count)
Sets the maximum attribute count.- Parameters:
count- maximum attribute count
-
getCookie
public byte[] getCookie()
Returns the sync request cookie.- Returns:
- sync request cookie
-
setCookie
public void setCookie(byte[] value)
Sets the sync request cookie.- Parameters:
value- sync request cookie
-
equals
public boolean equals(Object o)
- Overrides:
equalsin classAbstractControl
-
hashCode
public int hashCode()
Description copied from class:AbstractControlReturns the hash code for this object.- Specified by:
hashCodein classAbstractControl- Returns:
- hash code
-
toString
public String toString()
- Overrides:
toStringin classAbstractControl
-
encode
public byte[] encode()
Description copied from interface:RequestControlProvides the BER encoding of this control.- Specified by:
encodein interfaceRequestControl- Returns:
- BER encoded request control
-
decode
public void decode(DERBuffer encoded)
Description copied from interface:ResponseControlInitializes this response control with the supplied BER encoded data.- Specified by:
decodein interfaceResponseControl- Parameters:
encoded- BER encoded response control
-
-