31
31
import javax .servlet .ServletContext ;
32
32
import javax .servlet .ServletException ;
33
33
import javax .servlet .ServletRegistration ;
34
+ import javax .servlet .ServletRegistration .Dynamic ;
34
35
import javax .servlet .SessionCookieConfig ;
35
36
import javax .servlet .SessionTrackingMode ;
36
37
import javax .servlet .descriptor .JspConfigDescriptor ;
@@ -693,4 +694,44 @@ public ClassLoader getClassLoader() {
693
694
public void declareRoles (String ... strings ) {
694
695
throw new UnsupportedOperationException ("Not supported yet." ); //To change body of generated methods, choose Tools | Templates.
695
696
}
697
+
698
+ @ Override
699
+ public Dynamic addJspFile (String servletName , String jspFile ) {
700
+ throw new UnsupportedOperationException ("Not supported yet." ); //To change body of generated methods, choose Tools | Templates.
701
+ }
702
+
703
+ @ Override
704
+ public String getVirtualServerName () {
705
+ throw new UnsupportedOperationException ("Not supported yet." ); //To change body of generated methods, choose Tools | Templates.
706
+ }
707
+
708
+ @ Override
709
+ public int getSessionTimeout () {
710
+ throw new UnsupportedOperationException ("Not supported yet." ); //To change body of generated methods, choose Tools | Templates.
711
+ }
712
+
713
+ @ Override
714
+ public void setSessionTimeout (int sessionTimeout ) {
715
+ throw new UnsupportedOperationException ("Not supported yet." ); //To change body of generated methods, choose Tools | Templates.
716
+ }
717
+
718
+ @ Override
719
+ public String getRequestCharacterEncoding () {
720
+ throw new UnsupportedOperationException ("Not supported yet." ); //To change body of generated methods, choose Tools | Templates.
721
+ }
722
+
723
+ @ Override
724
+ public void setRequestCharacterEncoding (String encoding ) {
725
+ throw new UnsupportedOperationException ("Not supported yet." ); //To change body of generated methods, choose Tools | Templates.
726
+ }
727
+
728
+ @ Override
729
+ public String getResponseCharacterEncoding () {
730
+ throw new UnsupportedOperationException ("Not supported yet." ); //To change body of generated methods, choose Tools | Templates.
731
+ }
732
+
733
+ @ Override
734
+ public void setResponseCharacterEncoding (String encoding ) {
735
+ throw new UnsupportedOperationException ("Not supported yet." ); //To change body of generated methods, choose Tools | Templates.
736
+ }
696
737
}
0 commit comments