com.novell.ldap.rfc2251.RfcSearchResultReference Maven / Gradle / Ivy
/* **************************************************************************
* $OpenLDAP: pkg/jldap/com/novell/ldap/rfc2251/RfcSearchResultReference.java,v 1.16 2004/01/16 05:06:17 sunilk Exp $
*
* Copyright (C) 1999, 2000, 2001 Novell, Inc. All Rights Reserved.
*
* THIS WORK IS SUBJECT TO U.S. AND INTERNATIONAL COPYRIGHT LAWS AND
* TREATIES. USE, MODIFICATION, AND REDISTRIBUTION OF THIS WORK IS SUBJECT
* TO VERSION 2.0.1 OF THE OPENLDAP PUBLIC LICENSE, A COPY OF WHICH IS
* AVAILABLE AT HTTP://WWW.OPENLDAP.ORG/LICENSE.HTML OR IN THE FILE "LICENSE"
* IN THE TOP-LEVEL DIRECTORY OF THE DISTRIBUTION. ANY USE OR EXPLOITATION
* OF THIS WORK OTHER THAN AS AUTHORIZED IN VERSION 2.0.1 OF THE OPENLDAP
* PUBLIC LICENSE, OR OTHER PRIOR WRITTEN CONSENT FROM NOVELL, COULD SUBJECT
* THE PERPETRATOR TO CRIMINAL AND CIVIL LIABILITY.
******************************************************************************/
package com.novell.ldap.rfc2251;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import com.novell.ldap.*;
import com.novell.ldap.asn1.*;
/**
* Represents an LDAP Search Result Reference.
*
*
* SearchResultReference ::= [APPLICATION 19] SEQUENCE OF LDAPURL
*
*/
public class RfcSearchResultReference extends ASN1SequenceOf
{
//*************************************************************************
// Constructors for SearchResultReference
//*************************************************************************
/**
* The only time a client will create a SearchResultReference is when it is
* decoding it from an InputStream
*/
public RfcSearchResultReference(ASN1Decoder dec, InputStream in, int len)
throws IOException
{
super(dec, in, len);
return;
}
/** Creates the Object from a array of ldap urls passed as string.
* @param value array of urls with string Datatype.
* @throws MalformedURLException This exception is thrown if any of the
* LDAPURL is not formed
*/
public RfcSearchResultReference(String value[])
throws MalformedURLException {
super();
if (value == null)
throw new MalformedURLException("Malformed URL, null String are invalid URL");
for (int i = 0; i < value.length; i++) {
LDAPUrl url = new LDAPUrl(value[i]);
add(new ASN1OctetString(url.toString()));
}
}
//*************************************************************************
// Accessors
//*************************************************************************
/**
* Override getIdentifier to return an application-wide id.
*/
public final ASN1Identifier getIdentifier()
{
return new ASN1Identifier(ASN1Identifier.APPLICATION, true,
LDAPMessage.SEARCH_RESULT_REFERENCE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy