summaryrefslogtreecommitdiff
path: root/smcc/src/test/java/at/gv/egiz/smcc/pin/gui/DummyChangePINGUI.java
diff options
context:
space:
mode:
authormcentner <mcentner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2010-05-05 15:29:01 +0000
committermcentner <mcentner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2010-05-05 15:29:01 +0000
commitb1c8641a63a67e3c64d948f9e8dce5c01e11e2dd (patch)
tree0883f08a408f89f758e9a1be629232e3dd055c3a /smcc/src/test/java/at/gv/egiz/smcc/pin/gui/DummyChangePINGUI.java
parent83a9b613836910f7edc370c2fe60fa2268dc4461 (diff)
downloadmocca-b1c8641a63a67e3c64d948f9e8dce5c01e11e2dd.tar.gz
mocca-b1c8641a63a67e3c64d948f9e8dce5c01e11e2dd.tar.bz2
mocca-b1c8641a63a67e3c64d948f9e8dce5c01e11e2dd.zip
Merged feature branch mocca-1.2.13-id@r724 back to trunk.
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@725 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'smcc/src/test/java/at/gv/egiz/smcc/pin/gui/DummyChangePINGUI.java')
-rw-r--r--smcc/src/test/java/at/gv/egiz/smcc/pin/gui/DummyChangePINGUI.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/smcc/src/test/java/at/gv/egiz/smcc/pin/gui/DummyChangePINGUI.java b/smcc/src/test/java/at/gv/egiz/smcc/pin/gui/DummyChangePINGUI.java
index fff89409..e6192417 100644
--- a/smcc/src/test/java/at/gv/egiz/smcc/pin/gui/DummyChangePINGUI.java
+++ b/smcc/src/test/java/at/gv/egiz/smcc/pin/gui/DummyChangePINGUI.java
@@ -17,7 +17,7 @@
package at.gv.egiz.smcc.pin.gui;
import at.gv.egiz.smcc.CancelledException;
-import at.gv.egiz.smcc.PINSpec;
+import at.gv.egiz.smcc.PinInfo;
public abstract class DummyChangePINGUI implements ModifyPINGUI {
@@ -47,22 +47,22 @@ public abstract class DummyChangePINGUI implements ModifyPINGUI {
}
@Override
- public void modifyPINDirect(PINSpec spec, int retries) throws CancelledException, InterruptedException {
+ public void modifyPINDirect(PinInfo spec, int retries) throws CancelledException, InterruptedException {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
- public void enterCurrentPIN(PINSpec spec, int retries) {
+ public void enterCurrentPIN(PinInfo spec, int retries) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
- public void enterNewPIN(PINSpec spec) {
+ public void enterNewPIN(PinInfo spec) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
- public void confirmNewPIN(PINSpec spec) {
+ public void confirmNewPIN(PinInfo spec) {
throw new UnsupportedOperationException("Not supported yet.");
}
} \ No newline at end of file