File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
spring-web/src/main/java/org/springframework/http/server/reactive Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2021 the original author or authors.
2
+ * Copyright 2002-2022 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -65,6 +65,16 @@ public HttpStatus getStatusCode() {
65
65
return getDelegate ().getStatusCode ();
66
66
}
67
67
68
+ @ Override
69
+ public boolean setRawStatusCode (@ Nullable Integer value ) {
70
+ return getDelegate ().setRawStatusCode (value );
71
+ }
72
+
73
+ @ Override
74
+ public Integer getRawStatusCode () {
75
+ return getDelegate ().getRawStatusCode ();
76
+ }
77
+
68
78
@ Override
69
79
public HttpHeaders getHeaders () {
70
80
return getDelegate ().getHeaders ();
You can’t perform that action at this time.
0 commit comments