blob: 8f3df0e1925a40964381a5cc25370f577de2f15d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.api.ldap.extras.controls.ppolicy_impl;
/**
* Tags used for decoding PasswordPolicyResponseControl.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public enum PasswordPolicyTags
{
/** warning [0] */
PPOLICY_WARNING_TAG(0xA0),
/** error [1] */
PPOLICY_ERROR_TAG(0x81),
/** timeBeforeExpiration [0] */
TIME_BEFORE_EXPIRATION_TAG(0x80),
/** graceAuthNsRemaining [1] */
GRACE_AUTHNS_REMAINING_TAG(0x81);
/** Internal value for each tag */
private int value;
PasswordPolicyTags( int value )
{
this.value = value;
}
/**
* @return The numeric value associated with the PasswordPolicy tag
*/
public int getValue()
{
return value;
}
}