summaryrefslogtreecommitdiff
path: root/STAL/src/main/java/at/gv/egiz/stal/STAL.java
diff options
context:
space:
mode:
authorclemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2009-01-20 17:01:09 +0000
committerclemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2009-01-20 17:01:09 +0000
commita7d404cd6db2724d36523e59c87c3007fa86a258 (patch)
treee938b10cccf606c062fdb4cf569b8245a83b8a37 /STAL/src/main/java/at/gv/egiz/stal/STAL.java
parentc97c49eb4399829603816e4b3e47c74b67d0f27b (diff)
parentce598ba5142ff7673085dd90865f9323d69574be (diff)
downloadmocca-98226bf4e7944ad94068d90feca46e9da2dce567.tar.gz
mocca-98226bf4e7944ad94068d90feca46e9da2dce567.tar.bz2
mocca-98226bf4e7944ad94068d90feca46e9da2dce567.zip
[maven-release-plugin] copy for tag mocca-1.0.2mocca-1.0.2
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/tags/mocca-1.0.2@276 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'STAL/src/main/java/at/gv/egiz/stal/STAL.java')
-rw-r--r--STAL/src/main/java/at/gv/egiz/stal/STAL.java52
1 files changed, 26 insertions, 26 deletions
diff --git a/STAL/src/main/java/at/gv/egiz/stal/STAL.java b/STAL/src/main/java/at/gv/egiz/stal/STAL.java
index de29de9a..7015ec29 100644
--- a/STAL/src/main/java/at/gv/egiz/stal/STAL.java
+++ b/STAL/src/main/java/at/gv/egiz/stal/STAL.java
@@ -14,30 +14,30 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package at.gv.egiz.stal;
-
-import java.util.List;
-import java.util.Locale;
-
-/**
- * Interface for all implementations of the Security Tokean Abstraction Layer.
- * This interface is used by the BKU to handle all security token related parts.
- *
- *
- */
-public interface STAL {
-
- /**
- * Handles a list of security token commands.
- * @param aRequestList
- * @return
- */
- public List<STALResponse> handleRequest(List<STALRequest> aRequestList);
-
- /**
- * Sets the preferred locale for userinteraction (e.g. PIN dialogs).
- * If the locale is not set the default locale will be used.
- * @param locale must not be null.
- */
- public void setLocale(Locale locale);
+package at.gv.egiz.stal;
+
+import java.util.List;
+import java.util.Locale;
+
+/**
+ * Interface for all implementations of the Security Tokean Abstraction Layer.
+ * This interface is used by the BKU to handle all security token related parts.
+ *
+ *
+ */
+public interface STAL {
+
+ /**
+ * Handles a list of security token commands.
+ * @param aRequestList
+ * @return
+ */
+ public List<STALResponse> handleRequest(List<? extends STALRequest> aRequestList);
+
+ /**
+ * Sets the preferred locale for userinteraction (e.g. PIN dialogs).
+ * If the locale is not set the default locale will be used.
+ * @param locale must not be null.
+ */
+ public void setLocale(Locale locale);
} \ No newline at end of file