if ( method.equals( "rsync" ) )
{
String rsyncHost = (String) getFieldValue( "rsyncHost", obj );
if ( rsyncHost == null || rsyncHost.equals( "" ) )
{
ctxt.addActionError( "Rsync host is required." );
}
String rsyncDirectory = (String) getFieldValue( "rsyncDirectory", obj );
if ( rsyncDirectory == null || rsyncDirectory.equals( "" ) )
{