| | |
| | | * CDDL HEADER END |
| | | * |
| | | * |
| | | * Copyright 2013 ForgeRock AS |
| | | * Portions Copyright 2013-2014 ForgeRock AS |
| | | */ |
| | | package org.opends.server.tools.upgrade; |
| | | |
| | | import javax.security.auth.callback.TextOutputCallback; |
| | | |
| | | import org.opends.messages.Message; |
| | | import org.forgerock.i18n.LocalizableMessage; |
| | | |
| | | /** |
| | | * A progress notification callback. |
| | |
| | | * An integer representing the percentage of the task's progress. |
| | | */ |
| | | ProgressNotificationCallback(final int messageType, |
| | | final Message message, final int progress) |
| | | final LocalizableMessage message, final int progress) |
| | | { |
| | | super(messageType, message.toString()); |
| | | this.progress = progress; |