зеркало из https://github.com/mozilla/pjs.git
Parsers for controls returned by password policy
This commit is contained in:
Родитель
3849ac3c13
Коммит
04cd89895e
|
@ -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.
|
||||
* <P>
|
||||
*
|
||||
* @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 <CODE>LDAPControl</CODE> objects,
|
||||
* representing the controls returned by the server
|
||||
* after a search. To get these controls, use the
|
||||
* <CODE>getResponseControls</CODE> method of the
|
||||
* <CODE>LDAPConnection</CODE> 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 );
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче