blob: 61d21ef28b461efd6bc33cb4078c94f8113c3b2b [file] [log] [blame]
<?php
namespace LdapRecord\Models\Types;
interface ActiveDirectory extends TypeInterface
{
/**
* Returns the models object SID key.
*
* @return string
*/
public function getObjectSidKey();
/**
* Returns the model's hex object SID.
*
* @see https://msdn.microsoft.com/en-us/library/ms679024(v=vs.85).aspx
*
* @return string
*/
public function getObjectSid();
/**
* Returns the model's SID.
*
* @return string|null
*/
public function getConvertedSid();
}