Package com.ibm.di.plugin.pwstore.log
Class LogPasswordStore
- java.lang.Object
-
- com.ibm.di.plugin.pwstore.log.LogPasswordStore
-
- All Implemented Interfaces:
IPasswordSynchronizer,PasswordStore
public class LogPasswordStore extends java.lang.Object implements IPasswordSynchronizer, PasswordStore
-
-
Constructor Summary
Constructors Constructor Description LogPasswordStore()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanaddPasswordValues(java.lang.String id, java.util.Vector passwords)Deprecated.booleandeletePasswordValues(java.lang.String id, java.util.Vector passwords)Deprecated.voidinitialize(java.lang.Object aObj)This method initializes the password store.booleanisAvailable(PasswordChange change)This method check the password store availability,booleanreadyToSync(java.lang.String id)Deprecated.booleanreadyToSync(java.lang.String id, java.util.Vector passwords)Deprecated.booleansetExtendedData(PasswordChange change)This method sends additional information about a user.booleansetExtendedData(java.lang.String id, java.lang.String extendedData)Deprecated.booleanstore(PasswordChange change)This method stores password change in the password store.booleansyncPassword(java.lang.String id, java.util.Vector passwords)Deprecated.voidterminate()This method cleans any reserved resources such as files, connections etc.
-
-
-
Method Detail
-
initialize
public void initialize(java.lang.Object aObj) throws java.lang.ExceptionDescription copied from interface:PasswordStoreThis method initializes the password store.- Specified by:
initializein interfaceIPasswordSynchronizer- Specified by:
initializein interfacePasswordStore- Parameters:
aObj- object of typePWSyncLogused for logging- Throws:
java.lang.Exception
-
readyToSync
@Deprecated public boolean readyToSync(java.lang.String id)
Deprecated.- Specified by:
readyToSyncin interfaceIPasswordSynchronizer
-
readyToSync
@Deprecated public boolean readyToSync(java.lang.String id, java.util.Vector passwords)Deprecated.- Specified by:
readyToSyncin interfaceIPasswordSynchronizer
-
syncPassword
@Deprecated public boolean syncPassword(java.lang.String id, java.util.Vector passwords)Deprecated.- Specified by:
syncPasswordin interfaceIPasswordSynchronizer
-
addPasswordValues
@Deprecated public boolean addPasswordValues(java.lang.String id, java.util.Vector passwords)Deprecated.- Specified by:
addPasswordValuesin interfaceIPasswordSynchronizer
-
deletePasswordValues
@Deprecated public boolean deletePasswordValues(java.lang.String id, java.util.Vector passwords)Deprecated.- Specified by:
deletePasswordValuesin interfaceIPasswordSynchronizer
-
setExtendedData
@Deprecated public boolean setExtendedData(java.lang.String id, java.lang.String extendedData)Deprecated.- Specified by:
setExtendedDatain interfaceIPasswordSynchronizer
-
isAvailable
public boolean isAvailable(PasswordChange change)
This method check the password store availability,- Specified by:
isAvailablein interfacePasswordStore- Parameters:
change- object describing the password change- Returns:
trueif password store is available;falseotherwise
-
store
public boolean store(PasswordChange change)
This method stores password change in the password store.- Specified by:
storein interfacePasswordStore- Parameters:
change- object describing the password change- Returns:
trueif the operation is successful;falseotherwise
-
terminate
public void terminate()
This method cleans any reserved resources such as files, connections etc.- Specified by:
terminatein interfaceIPasswordSynchronizer- Specified by:
terminatein interfacePasswordStore
-
setExtendedData
public boolean setExtendedData(PasswordChange change)
This method sends additional information about a user.Currently only the Windows Password Synchronizer plug-in sends extended data.
- Specified by:
setExtendedDatain interfacePasswordStore- Parameters:
change- object describing the password change- Returns:
trueif the operation is successful;falseotherwise
-
-