diff --git a/mozilla/directory/java-sdk/ldapjdk/netscape/ldap/controls/LDAPPasswordExpiredControl.java b/mozilla/directory/java-sdk/ldapjdk/netscape/ldap/controls/LDAPPasswordExpiredControl.java new file mode 100644 index 00000000000..d1a5b8dc3f2 --- /dev/null +++ b/mozilla/directory/java-sdk/ldapjdk/netscape/ldap/controls/LDAPPasswordExpiredControl.java @@ -0,0 +1,45 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- + * + * The contents of this file are subject to the Netscape Public License + * Version 1.0 (the "NPL"); you may not use this file except in + * compliance with the NPL. You may obtain a copy of the NPL at + * http://www.mozilla.org/NPL/ + * + * Software distributed under the NPL is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL + * for the specific language governing rights and limitations under the + * NPL. + * + * The Initial Developer of this code under the NPL is Netscape + * Communications Corporation. Portions created by Netscape are + * Copyright (C) 1998 Netscape Communications Corporation. All Rights + * Reserved. + */ +package netscape.ldap.controls; + +import netscape.ldap.LDAPControl; + +/** + * Represents an LDAP v3 server control that may be returned if a + * password has expired, and password policy is enabled on the server. + * The OID for this control is 2.16.840.1.113730.3.4.4. + *

+ * + * @version 1.0 + * @see netscape.ldap.LDAPControl + */ +public class LDAPPasswordExpiredControl extends LDAPStringControl { + public final static String EXPIRED = "2.16.840.1.113730.3.4.4"; + /** + * @param controls An array of LDAPControl objects, + * representing the controls returned by the server + * after a search. To get these controls, use the + * getResponseControls method of the + * LDAPConnection class. + * @return An error message string, or null if none is in the control. + * @see netscape.ldap.LDAPConnection#getResponseControls + */ + public static String parseResponse( LDAPControl[] controls ) { + return LDAPStringControl.parseResponse( controls, EXPIRED ); + } +}