From 8d85b65a690e38e455ea084f35847f4adc87b843 Mon Sep 17 00:00:00 2001 From: Roman Rakus Date: Wed, 10 Oct 2012 15:59:59 +0200 Subject: Account: Password and user expiration Signed-off-by: Roman Rakus --- mof/LMI_Account.mof | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'mof') diff --git a/mof/LMI_Account.mof b/mof/LMI_Account.mof index 75f0cf1..5dc6f11 100644 --- a/mof/LMI_Account.mof +++ b/mof/LMI_Account.mof @@ -33,11 +33,17 @@ class LMI_Account: CIM_Account [ Description("The date when was password last changed") ] datetime PasswordLastChange; - [ Description("The minimal date when can be password changed") ] - datetime PasswordMinLifetime; + [ Description("The date since when can be password changed") ] + datetime PasswordPossibleChange; - [ Description("The maximal date when can be password changed") ] - datetime PasswordMaxLifetime; + [ Description("The date when the user should start to be warned about password expiration") ] + datetime PasswordExpirationWarning; + + [ Description("The date when the user will not be able to login using the user's password. The user should contact her administrator.") ] + datetime PasswordInactivation; + + [ Description("The date of expiration of the account.") ] + datetime AccountExpiration; }; [ Description("LMI_AccountManagementService creates, manages, and if necessary " -- cgit