Skip to content

Commit 3a61d87

Browse files
author
Vladimir Kotal
committed
another dummy
1 parent b5048dc commit 3a61d87

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

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

103103
@Override
104-
public Enumeration getAttributeNames() {
104+
public Enumeration<String> getAttributeNames() {
105105
throw new UnsupportedOperationException("Not supported yet.");
106106
}
107107

@@ -166,12 +166,12 @@ public String getHeader(String string) {
166166
}
167167

168168
@Override
169-
public Enumeration getHeaders(String string) {
169+
public Enumeration<String> getHeaders(String string) {
170170
throw new UnsupportedOperationException("Not supported yet.");
171171
}
172172

173173
@Override
174-
public Enumeration getHeaderNames() {
174+
public Enumeration<String> getHeaderNames() {
175175
throw new UnsupportedOperationException("Not supported yet.");
176176
}
177177

@@ -312,7 +312,7 @@ public Object getAttribute(String string) {
312312
}
313313

314314
@Override
315-
public Enumeration getAttributeNames() {
315+
public Enumeration<String> getAttributeNames() {
316316
return Collections.enumeration(attrs.keySet());
317317
}
318318

@@ -352,7 +352,7 @@ public String getParameter(String string) {
352352
}
353353

354354
@Override
355-
public Enumeration getParameterNames() {
355+
public Enumeration<String> getParameterNames() {
356356
throw new UnsupportedOperationException("Not supported yet.");
357357
}
358358

@@ -362,7 +362,7 @@ public String[] getParameterValues(String string) {
362362
}
363363

364364
@Override
365-
public Map getParameterMap() {
365+
public Map<String,String[]> getParameterMap() {
366366
throw new UnsupportedOperationException("Not supported yet.");
367367
}
368368

@@ -417,7 +417,7 @@ public Locale getLocale() {
417417
}
418418

419419
@Override
420-
public Enumeration getLocales() {
420+
public Enumeration<Locale> getLocales() {
421421
throw new UnsupportedOperationException("Not supported yet.");
422422
}
423423

0 commit comments

Comments
 (0)