!backupDirectory.getValue().equals(
backupDirectory.getDefaultValue())) {
values = new ArrayList<ByteString>(1);
values.add(ByteString.valueOf(backupDirectory.getValue()));
attributes.add(
new LDAPAttribute(ATTR_BACKUP_DIRECTORY_PATH, values));
}
if (backupIDString.getValue() != null &&
!backupIDString.getValue().equals(
backupIDString.getDefaultValue())) {
values = new ArrayList<ByteString>(1);
values.add(ByteString.valueOf(backupIDString.getValue()));
attributes.add(
new LDAPAttribute(ATTR_BACKUP_ID, values));
}
if (verifyOnly.getValue() != null &&
!verifyOnly.getValue().equals(
verifyOnly.getDefaultValue())) {
values = new ArrayList<ByteString>(1);
values.add(ByteString.valueOf(verifyOnly.getValue()));
attributes.add(
new LDAPAttribute(ATTR_TASK_RESTORE_VERIFY_ONLY, values));
}
}