public CompareRequest(
     LDAPDN entry,
     AttributeValueAssertion ava)
 {
     this.entry = entry;
     this.ava = ava;
 }
 public ModifyDNResponse(
     LDAPResult_resultCode resultCode,
     LDAPDN matchedDN,
     LDAPString errorMessage)
     : base(resultCode, matchedDN, errorMessage)
 {
 }
 public ModifyRequest(
     LDAPDN modifyobject,
     Asn1SequenceOf<ModifyRequest_modifications_element> modifications)
 {
     this.modifyobject = modifyobject;
     this.modifications = modifications;
 }
 public AddRequest(
     LDAPDN entry,
     Asn1SequenceOf <AddRequest_attrs_element> attrs)
 {
     this.entry = entry;
     this.attrs = attrs;
 }
Esempio n. 5
0
 public ModifyRequest(
     LDAPDN modifyobject,
     Asn1SequenceOf <ModifyRequest_modifications_element> modifications)
 {
     this.modifyobject  = modifyobject;
     this.modifications = modifications;
 }
 public ModifyDNRequest()
 {
     this.entry        = null;
     this.newrdn       = null;
     this.deleteoldrdn = null;
     this.newSuperior  = null;
 }
 public ModifyRDNRequest(
     LDAPDN entry,
     RelativeLDAPDN newrdn)
 {
     this.entry = entry;
     this.newrdn = newrdn;
 }
 public AddRequest(
     LDAPDN entry,
     Asn1SequenceOf<AddRequest_attrs_element> attrs)
 {
     this.entry = entry;
     this.attrs = attrs;
 }
 public ModifyRDNRequest(
     LDAPDN entry,
     RelativeLDAPDN newrdn)
 {
     this.entry  = entry;
     this.newrdn = newrdn;
 }
 public SearchResponse_entry(
     LDAPDN objectName,
     Asn1SequenceOf<SearchResponse_entry_attributes_element> attributes)
 {
     this.objectName = objectName;
     this.attributes = attributes;
 }
Esempio n. 11
0
 public CompareRequest(
     LDAPDN entry,
     AttributeValueAssertion ava)
 {
     this.entry = entry;
     this.ava   = ava;
 }
 public SearchResponse_entry(
     LDAPDN objectName,
     Asn1SequenceOf <SearchResponse_entry_attributes_element> attributes)
 {
     this.objectName = objectName;
     this.attributes = attributes;
 }
 public BindRequest(
     Asn1Integer version,
     LDAPDN name,
     BindRequest_authentication authentication)
 {
     this.version = version;
     this.name = name;
     this.authentication = authentication;
 }
 public BindRequest(
     Asn1Integer version,
     LDAPDN name,
     BindRequest_authentication authentication)
 {
     this.version        = version;
     this.name           = name;
     this.authentication = authentication;
 }
Esempio n. 15
0
 public LDAPResult(
     LDAPResult_resultCode resultCode,
     LDAPDN matchedDN,
     LDAPString errorMessage)
 {
     this.resultCode   = resultCode;
     this.matchedDN    = matchedDN;
     this.errorMessage = errorMessage;
 }
 public LDAPResult(
     LDAPResult_resultCode resultCode,
     LDAPDN matchedDN,
     LDAPString errorMessage)
 {
     this.resultCode = resultCode;
     this.matchedDN = matchedDN;
     this.errorMessage = errorMessage;
 }
Esempio n. 17
0
 public ModifyDNRequest(
     LDAPDN entry,
     RelativeLDAPDN newrdn,
     Asn1Boolean deleteoldrdn,
     LDAPDN newSuperior)
 {
     this.entry        = entry;
     this.newrdn       = newrdn;
     this.deleteoldrdn = deleteoldrdn;
     this.newSuperior  = newSuperior;
 }
 public SearchRequest(
     LDAPDN baseObject,
     SearchRequest_scope scope,
     SearchRequest_derefAliases derefAliases,
     Asn1Integer sizeLimit,
     Asn1Integer timeLimit,
     Asn1Boolean attrsOnly,
     Filter filter,
     Asn1SequenceOf<AttributeType> attributes)
 {
     this.baseObject = baseObject;
     this.scope = scope;
     this.derefAliases = derefAliases;
     this.sizeLimit = sizeLimit;
     this.timeLimit = timeLimit;
     this.attrsOnly = attrsOnly;
     this.filter = filter;
     this.attributes = attributes;
 }
 public SearchRequest(
     LDAPDN baseObject,
     SearchRequest_scope scope,
     SearchRequest_derefAliases derefAliases,
     Asn1Integer sizeLimit,
     Asn1Integer timeLimit,
     Asn1Boolean attrsOnly,
     Filter filter,
     Asn1SequenceOf <AttributeType> attributes)
 {
     this.baseObject   = baseObject;
     this.scope        = scope;
     this.derefAliases = derefAliases;
     this.sizeLimit    = sizeLimit;
     this.timeLimit    = timeLimit;
     this.attrsOnly    = attrsOnly;
     this.filter       = filter;
     this.attributes   = attributes;
 }
Esempio n. 20
0
 public AddResponse(
     LDAPResult_resultCode resultCode,
     LDAPDN matchedDN,
     LDAPString errorMessage) : base(resultCode, matchedDN, errorMessage)
 {
 }