blob: b151d929a3cf75535bdd2908fa136fe7f2ff7bb3 [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
*
* http://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;
/**
* A simple {@link PasswordPolicy} {@link Control} implementation.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public class PasswordPolicyImpl implements PasswordPolicy
{
/** The criticality of this {@link Control} */
private boolean criticality;
/** The password policy response component if this is a response control */
private PasswordPolicyResponse response;
/**
* Creates a new instance of a PasswordPolicy request Control without any
* response data associated with it.
*/
public PasswordPolicyImpl()
{
response = null;
}
/**
* Creates a new instance of a PasswordPolicy request Control without any
* response data associated with it.
*/
public PasswordPolicyImpl( boolean hasResponse )
{
if ( hasResponse )
{
response = new PasswordPolicyResponseImpl();
}
else
{
response = null;
}
}
/**
* Creates a new instance of PasswordPolicy response Control with response
* information packaged into the control.
*/
public PasswordPolicyImpl( PasswordPolicyResponse response )
{
this.response = response;
}
/**
* {@inheritDoc}
*/
public String getOid()
{
return PasswordPolicy.OID;
}
/**
* {@inheritDoc}
*/
public boolean isCritical()
{
return criticality;
}
/**
* {@inheritDoc}
*/
public void setCritical( boolean isCritical )
{
this.criticality = isCritical;
}
/**
*
* {@inheritDoc}
*/
public void setResponse( PasswordPolicyResponse response )
{
this.response = response;
}
/**
* {@inheritDoc}
*/
public boolean hasResponse()
{
return response != null;
}
/**
*
* {@inheritDoc}
*/
public PasswordPolicyResponse setResponse( boolean hasResponse )
{
PasswordPolicyResponse old = this.response;
if ( hasResponse )
{
this.response = new PasswordPolicyResponseImpl();
}
else
{
this.response = null;
}
return old;
}
/**
* {@inheritDoc}
*/
public PasswordPolicyResponse getResponse()
{
return response;
}
}