summaryrefslogtreecommitdiff
path: root/spring-context/src/test/java/org/springframework/ejb
diff options
context:
space:
mode:
Diffstat (limited to 'spring-context/src/test/java/org/springframework/ejb')
-rw-r--r--spring-context/src/test/java/org/springframework/ejb/access/LocalStatelessSessionProxyFactoryBeanTests.java8
-rw-r--r--spring-context/src/test/java/org/springframework/ejb/access/SimpleRemoteStatelessSessionProxyFactoryBeanTests.java11
2 files changed, 9 insertions, 10 deletions
diff --git a/spring-context/src/test/java/org/springframework/ejb/access/LocalStatelessSessionProxyFactoryBeanTests.java b/spring-context/src/test/java/org/springframework/ejb/access/LocalStatelessSessionProxyFactoryBeanTests.java
index 9fbf0bbd..29b40fc1 100644
--- a/spring-context/src/test/java/org/springframework/ejb/access/LocalStatelessSessionProxyFactoryBeanTests.java
+++ b/spring-context/src/test/java/org/springframework/ejb/access/LocalStatelessSessionProxyFactoryBeanTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2013 the original author or authors.
+ * Copyright 2002-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -182,19 +182,19 @@ public class LocalStatelessSessionProxyFactoryBeanTests {
}
- public static interface MyHome extends EJBLocalHome {
+ public interface MyHome extends EJBLocalHome {
MyBusinessMethods create() throws CreateException;
}
- public static interface MyBusinessMethods {
+ public interface MyBusinessMethods {
int getValue();
}
- public static interface MyEjb extends EJBLocalObject, MyBusinessMethods {
+ public interface MyEjb extends EJBLocalObject, MyBusinessMethods {
}
}
diff --git a/spring-context/src/test/java/org/springframework/ejb/access/SimpleRemoteStatelessSessionProxyFactoryBeanTests.java b/spring-context/src/test/java/org/springframework/ejb/access/SimpleRemoteStatelessSessionProxyFactoryBeanTests.java
index 8efc5b57..2d62ee73 100644
--- a/spring-context/src/test/java/org/springframework/ejb/access/SimpleRemoteStatelessSessionProxyFactoryBeanTests.java
+++ b/spring-context/src/test/java/org/springframework/ejb/access/SimpleRemoteStatelessSessionProxyFactoryBeanTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2013 the original author or authors.
+ * Copyright 2002-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -279,26 +279,25 @@ public class SimpleRemoteStatelessSessionProxyFactoryBeanTests extends SimpleRem
}
- protected static interface MyHome extends EJBHome {
+ protected interface MyHome extends EJBHome {
MyBusinessMethods create() throws CreateException, RemoteException;
}
- protected static interface MyBusinessMethods {
+ protected interface MyBusinessMethods {
int getValue() throws RemoteException;
}
- protected static interface MyLocalBusinessMethods {
+ protected interface MyLocalBusinessMethods {
int getValue();
}
- protected static interface MyEjb extends EJBObject, MyBusinessMethods {
-
+ protected interface MyEjb extends EJBObject, MyBusinessMethods {
}
}