public static bool IsTenantLockedDown(ADObjectId identity)
 {
     return(TenantRelocationStateCache.IsSourceTenantStateInRange(identity, new TenantRelocationStatus[]
     {
         TenantRelocationStatus.Lockdown
     }));
 }
 public static bool IsTenantRetired(ADObjectId identity)
 {
     return(TenantRelocationStateCache.IsSourceTenantStateInRange(identity, new TenantRelocationStatus[]
     {
         TenantRelocationStatus.Retired
     }));
 }
 public static bool IsTenantVolatile(ADObjectId identity)
 {
     return(TenantRelocationStateCache.IsSourceTenantStateInRange(identity, new TenantRelocationStatus[]
     {
         TenantRelocationStatus.Synchronization,
         TenantRelocationStatus.Lockdown,
         TenantRelocationStatus.Retired
     }));
 }