com.hfg.ldap.ad.ActiveDirectoryUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
package com.hfg.ldap.ad;
import java.util.Date;
import java.util.EnumSet;
import com.hfg.ldap.LDAP_User;
//------------------------------------------------------------------------------
/**
Container for Active Directory user information.
@author J. Alex Taylor, hairyfatguy.com
*/
//------------------------------------------------------------------------------
// com.hfg XML/HTML Coding Library
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com
// [email protected]
//------------------------------------------------------------------------------
public class ActiveDirectoryUser extends LDAP_User
{
private EnumSet mUAC_Flags;
//--------------------------------------------------------------------------
@Override
public ActiveDirectoryUser setField(String inName, String inValue)
{
super.setField(inName, inValue);
if (inName.equalsIgnoreCase(ActiveDirectoryField.USER_ACCOUNT_CONTROL))
{
setUAC_Flags(Integer.parseInt(inValue));
}
return this;
}
//--------------------------------------------------------------------------
public boolean isUAC_FlagSet(UserAccountControlFlag inFlag)
{
return mUAC_Flags != null && mUAC_Flags.contains(inFlag);
}
//--------------------------------------------------------------------------
public ActiveDirectoryUser setUAC_Flag(UserAccountControlFlag inFlag)
{
if (null == mUAC_Flags)
{
mUAC_Flags = EnumSet.of(inFlag);
}
else
{
mUAC_Flags.add(inFlag);
}
return this;
}
//--------------------------------------------------------------------------
public ActiveDirectoryUser clearUAC_Flag(UserAccountControlFlag inFlag)
{
if (mUAC_Flags != null)
{
mUAC_Flags.remove(inFlag);
}
return this;
}
//--------------------------------------------------------------------------
public ActiveDirectoryUser setUAC_Flags(int inValue)
{
mUAC_Flags = UserAccountControlFlag.fromBitFlags(inValue);
return this;
}
//--------------------------------------------------------------------------
public Date getLastLogon()
{
return ActiveDirectory.convertWin32EpochTimestamp(getField(ActiveDirectoryField.LAST_LOGON_TIMESTAMP));
}
//--------------------------------------------------------------------------
public Date getWhenCreated()
{
return ActiveDirectory.convertWin32EpochTimestamp(getField(ActiveDirectoryField.WHEN_CREATED));
}
}