summaryrefslogtreecommitdiffstats
path: root/auth/auth-core
diff options
context:
space:
mode:
authorInstrumental <jcgmisc@stl.gathman.org>2018-04-10 15:03:24 -0500
committerInstrumental <jcgmisc@stl.gathman.org>2018-04-10 15:04:29 -0500
commitf482ea06ac55e56025c64916592f07db2c1fddd7 (patch)
tree6b7bfc87f085aaa8edf1fccb2db238e7b1c78500 /auth/auth-core
parentce6a67f4939900bbedaef5eeb986768fb4eec8ad (diff)
Create Functioning Client Sample for Docs
Issue-ID: AAF-221 Change-Id: Iaefe6700a900a712409bda7ddfd18932ed4c0fda Signed-off-by: Instrumental <jcgmisc@stl.gathman.org>
Diffstat (limited to 'auth/auth-core')
-rw-r--r--auth/auth-core/src/test/java/org/onap/aaf/auth/server/test/JU_JettyServiceStarter.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/auth/auth-core/src/test/java/org/onap/aaf/auth/server/test/JU_JettyServiceStarter.java b/auth/auth-core/src/test/java/org/onap/aaf/auth/server/test/JU_JettyServiceStarter.java
index 39af2568..9a02b634 100644
--- a/auth/auth-core/src/test/java/org/onap/aaf/auth/server/test/JU_JettyServiceStarter.java
+++ b/auth/auth-core/src/test/java/org/onap/aaf/auth/server/test/JU_JettyServiceStarter.java
@@ -51,9 +51,9 @@ import org.mockito.Mock;
public class JU_JettyServiceStarter {
private PropAccess propAccess = new PropAccess();
private JettyServiceStarter<AuthzEnv,AuthzTrans> jss;
- class TestService extends AbsService{
+ class TestService extends AbsService<AuthzEnv,AuthzTrans>{
- public TestService(Access access, BasicEnv env) throws CadiException {
+ public TestService(Access access, AuthzEnv env) throws CadiException {
super(access, env);
// TODO Auto-generated constructor stub
}
@@ -65,11 +65,11 @@ public class JU_JettyServiceStarter {
}
@Override
- public Registrant[] registrants(int port) throws CadiException, LocatorException {
+ public Registrant<AuthzEnv>[] registrants(int port) throws CadiException, LocatorException {
// TODO Auto-generated method stub
return null;
}
-
+
}
@SuppressWarnings("unchecked")
@Before