MasterPasswordRequest aMasterPasswordRequest;
if( xRequest.getRequest() instanceof MasterPasswordRequest ) {
aMasterPasswordRequest = (MasterPasswordRequest)xRequest.getRequest();
if( aMasterPasswordRequest != null ) {
XInteractionContinuation xContinuations[] = xRequest.getContinuations();
XInteractionSupplyAuthentication xAuthentication = null;
for( int i = 0; i < xContinuations.length; ++i ) {
xAuthentication = (XInteractionSupplyAuthentication)UnoRuntime.queryInterface( XInteractionSupplyAuthentication.class, xContinuations[i]);
if( xAuthentication != null )
break;
}
if( xAuthentication.canSetPassword() )
xAuthentication.setPassword( "abcdefghijklmnopqrstuvwxyz123456" );
xAuthentication.select();
}
} else {
m_xHandler.handle( xRequest );
}
} catch( Exception e ) {