Skip to content

Commit 40e5cc1

Browse files
author
Vladimir Kotal
committed
yet another dummy
1 parent 3a61d87 commit 40e5cc1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

plugins/test/opengrok/auth/plugin/util/DummyHttpServletRequestLdap.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public Object getValue(String string) {
108108
}
109109

110110
@Override
111-
public Enumeration getAttributeNames() {
111+
public Enumeration<String> getAttributeNames() {
112112
throw new UnsupportedOperationException("Not supported yet.");
113113
}
114114

@@ -169,12 +169,12 @@ public String getHeader(String string) {
169169
}
170170

171171
@Override
172-
public Enumeration getHeaders(String string) {
172+
public Enumeration<String> getHeaders(String string) {
173173
throw new UnsupportedOperationException("Not supported yet.");
174174
}
175175

176176
@Override
177-
public Enumeration getHeaderNames() {
177+
public Enumeration<String> getHeaderNames() {
178178
throw new UnsupportedOperationException("Not supported yet.");
179179
}
180180

@@ -315,7 +315,7 @@ public Object getAttribute(String string) {
315315
}
316316

317317
@Override
318-
public Enumeration getAttributeNames() {
318+
public Enumeration<String> getAttributeNames() {
319319
return Collections.enumeration(attrs.keySet());
320320
}
321321

@@ -355,7 +355,7 @@ public String getParameter(String string) {
355355
}
356356

357357
@Override
358-
public Enumeration getParameterNames() {
358+
public Enumeration<String> getParameterNames() {
359359
throw new UnsupportedOperationException("Not supported yet.");
360360
}
361361

@@ -365,7 +365,7 @@ public String[] getParameterValues(String string) {
365365
}
366366

367367
@Override
368-
public Map getParameterMap() {
368+
public Map<String,String[]> getParameterMap() {
369369
throw new UnsupportedOperationException("Not supported yet.");
370370
}
371371

@@ -420,7 +420,7 @@ public Locale getLocale() {
420420
}
421421

422422
@Override
423-
public Enumeration getLocales() {
423+
public Enumeration<Locale> getLocales() {
424424
throw new UnsupportedOperationException("Not supported yet.");
425425
}
426426

0 commit comments

Comments
 (0)