Class CommandLinePasswordManager
java.lang.Object
com.nomagic.magicdraw.teamwork2.esi.protect.CommandLinePasswordManager
- All Implemented Interfaces:
com.nomagic.magicdraw.teamwork2.esi.protect.PasswordManager
@OpenApiAll
public class CommandLinePasswordManager
extends Object
implements com.nomagic.magicdraw.teamwork2.esi.protect.PasswordManager
Password manager implementation for command line utilities
- Version:
- 1.0
-
Field Summary
Modifier and TypeFieldDescriptionprotected final com.nomagic.ci.persistence.ProjectDescriptor
-
Constructor Summary
ConstructorDescriptionCommandLinePasswordManager
(com.nomagic.ci.persistence.ProjectDescriptor descriptor, com.nomagic.magicdraw.teamwork2.esi.protect.PasswordCheckingImpl implementation) Creates and initializes a newAbstractPasswordManager
from specified parameters. -
Method Summary
Modifier and TypeMethodDescriptionboolean
If the specified resource is password protected then the method asks the user to enter a password.boolean
Checks whether the project is password protected.boolean
isValidPassword
(char[] password) Returns true if the specified password is valid.
-
Field Details
-
descriptor
protected final com.nomagic.ci.persistence.ProjectDescriptor descriptor
-
-
Constructor Details
-
CommandLinePasswordManager
public CommandLinePasswordManager(com.nomagic.ci.persistence.ProjectDescriptor descriptor, com.nomagic.magicdraw.teamwork2.esi.protect.PasswordCheckingImpl implementation) Creates and initializes a newAbstractPasswordManager
from specified parameters.- Parameters:
descriptor
- a project descriptor.implementation
- password checking implementation.
-
-
Method Details
-
askPasswordIfProtected
public boolean askPasswordIfProtected()Description copied from interface:com.nomagic.magicdraw.teamwork2.esi.protect.PasswordManager
If the specified resource is password protected then the method asks the user to enter a password.- Specified by:
askPasswordIfProtected
in interfacecom.nomagic.magicdraw.teamwork2.esi.protect.PasswordManager
- Returns:
- true if the resource is not package protected or the user entered a correct password, otherwise - false.
-
isProtected
public boolean isProtected() throws com.nomagic.magicdraw.teamwork2.esi.protect.PasswordProtectExceptionChecks whether the project is password protected.- Specified by:
isProtected
in interfacecom.nomagic.magicdraw.teamwork2.esi.protect.PasswordManager
- Returns:
- true if the project is password protected, otherwise - false.
- Throws:
com.nomagic.magicdraw.teamwork2.esi.protect.PasswordProtectException
- if checking fails.
-
isValidPassword
public boolean isValidPassword(char[] password) throws com.nomagic.magicdraw.teamwork2.esi.protect.PasswordProtectException Description copied from interface:com.nomagic.magicdraw.teamwork2.esi.protect.PasswordManager
Returns true if the specified password is valid.- Specified by:
isValidPassword
in interfacecom.nomagic.magicdraw.teamwork2.esi.protect.PasswordManager
- Parameters:
password
- the project password.- Returns:
- true if valid.
- Throws:
com.nomagic.magicdraw.teamwork2.esi.protect.PasswordProtectException
- if checking whether the project password is valid fails.
-