repo
stringlengths
1
191
file
stringlengths
23
351
code
stringlengths
0
5.32M
file_length
int64
0
5.32M
avg_line_length
float64
0
2.9k
max_line_length
int64
0
288k
extension_type
stringclasses
1 value
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/handlestypes/HandlesTypesWarTestCase.java
package org.jboss.as.test.integration.web.handlestypes; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.junit.Assert;...
2,312
44.352941
199
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/handlers/UndertowHandlersConfigTestCase.java
package org.jboss.as.test.integration.web.handlers; import org.apache.http.Header; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.StatusLine; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.imp...
2,688
36.873239
156
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/handlers/SetHeaderHandler.java
package org.jboss.as.test.integration.web.handlers; import io.undertow.server.HttpHandler; import io.undertow.server.HttpServerExchange; import io.undertow.util.HttpString; /** * @author Stuart Douglas */ public class SetHeaderHandler implements HttpHandler { private final HttpHandler next; private String...
898
19.906977
77
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/handlers/RequestDumpingHandlerTestImpl.java
package org.jboss.as.test.integration.web.handlers; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStreamReader; import java.io.LineNumberReader; import java.net.URI; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java....
18,911
39.846652
161
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/handlers/RequestDumpingHandlerTestCase.java
package org.jboss.as.test.integration.web.handlers; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.FILE; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.FILE_HANDLER; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.LOGGER; import s...
13,303
51.172549
157
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/handlers/ForwardedTestHelperServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
2,507
38.1875
117
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/handlers/SameSiteCookieHandlerTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2020, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
8,264
42.962766
116
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/handlers/ForwardedHandlerTestCase.java
package org.jboss.as.test.integration.web.handlers; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.ALLOW_RESOURCE_SERVICE_RESTART; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OPERATION_HEADERS; import static org.jboss.as.controller.descriptions.ModelDescri...
8,158
47.278107
129
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/handlers/ForwardedTestHelperHandler.java
package org.jboss.as.test.integration.web.handlers; import io.undertow.server.HttpHandler; import io.undertow.server.HttpServerExchange; import io.undertow.util.HttpString; import org.jboss.as.test.shared.TestSuiteEnvironment; /** * @author Jan Stourac */ public class ForwardedTestHelperHandler implements HttpHand...
1,243
32.621622
97
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/jsp/JspMappingTestCase.java
/* * Copyright (C) 2014 Red Hat, inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser Gen...
5,770
38.527397
108
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/jsp/JspSecurityManagerTestCase.java
package org.jboss.as.test.integration.web.jsp; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.as.test.integration.common.HttpRe...
2,206
40.641509
141
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/jsp/taglib/external/ExternalTag.java
package org.jboss.as.test.integration.web.jsp.taglib.external; import java.io.IOException; import jakarta.servlet.jsp.JspException; import jakarta.servlet.jsp.JspWriter; import jakarta.servlet.jsp.tagext.SimpleTagSupport; /** * @author Stuart Douglas */ public class ExternalTag extends SimpleTagSupport { @Overr...
479
25.666667
62
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/jsp/taglib/external/InternalTag.java
package org.jboss.as.test.integration.web.jsp.taglib.external; import java.io.IOException; import jakarta.servlet.jsp.JspException; import jakarta.servlet.jsp.JspWriter; import jakarta.servlet.jsp.tagext.SimpleTagSupport; /** * @author Stuart Douglas */ public class InternalTag extends SimpleTagSupport { @Overr...
479
25.666667
62
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/jsp/taglib/external/ExternalTagLibTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
6,460
43.558621
125
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/jsp/taglib/jar/TagLibInJarTestCase.java
/* * Copyright 2018 Red Hat, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
5,292
38.207407
121
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/jsp/taglib/jar/TestTag.java
/* * Copyright 2018 Red Hat, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
1,062
30.264706
75
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/customerrors/ContextForwardServlet.java
/* * JBoss, Home of Professional Open Source * Copyright 2005, JBoss Inc., and individual contributors as indicated * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the ter...
4,034
41.473684
121
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/customerrors/CustomErrorsUnitTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
6,242
42.055172
121
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/customerrors/ErrorGeneratorServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
2,561
38.415385
130
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/webfragment/WebFragmentAbsoluteOrderingTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
2,855
37.594595
130
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/rootcontext/RootContextUtil.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
5,964
42.540146
122
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/rootcontext/RootContextEarUnitTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
3,768
39.095745
114
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/rootcontext/RootContextWarUnitTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
3,454
38.261364
114
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/websocket/WebSocketTestCase.java
package org.jboss.as.test.integration.web.websocket; import static org.jboss.as.test.shared.integration.ejb.security.PermissionUtils.createPermissionsXmlAsset; import java.io.IOException; import java.net.SocketPermission; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import java.util.P...
4,441
42.54902
128
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/websocket/AnnotatedEndpoint.java
package org.jboss.as.test.integration.web.websocket; import jakarta.websocket.OnMessage; import jakarta.websocket.server.PathParam; import jakarta.websocket.server.ServerEndpoint; /** * @author Stuart Douglas */ @ServerEndpoint("/websocket/{name}") public class AnnotatedEndpoint { @OnMessage public String ...
424
21.368421
75
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/websocket/AnnotatedClient.java
package org.jboss.as.test.integration.web.websocket; import java.io.IOException; import java.util.concurrent.BlockingDeque; import java.util.concurrent.LinkedBlockingDeque; import java.util.concurrent.TimeUnit; import jakarta.websocket.ClientEndpoint; import jakarta.websocket.OnMessage; import jakarta.websocket.OnOpe...
870
23.194444
76
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/cookie/CookieEchoServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2018, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
2,430
36.4
116
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/cookie/CookieUnitTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
6,613
43.993197
129
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/cookie/CookieReadServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
3,777
43.97619
130
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/cookie/DefaultCookieVersionTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2018, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
6,461
40.423077
124
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/cookie/CookieServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
3,815
39.595745
130
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/cookie/SimpleCookieServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2018, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
2,916
38.958904
116
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/servlet/pathmapping/PathMappingServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2018, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * This is free software; you can redistribute it and/or modify it * under t...
1,776
44.564103
178
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/servlet/pathmapping/ServletMappingMatchTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2018, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * This is free software; you can redistribute it and/or modify it * under t...
2,510
37.630769
86
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/servlet/enc/empty/EmptyServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
2,115
36.122807
113
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/servlet/enc/empty/EmptyCompEnvTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
2,470
34.811594
81
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/servlet/overlays/PathAccessCheckServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2018, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,710
40.707692
121
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/servlet/overlays/ServletResourceOverlaysTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
8,006
44.754286
168
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/servlet/lifecycle/LifeCycleMethodServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
2,751
32.560976
113
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/servlet/lifecycle/ServletLifecycleMethodDescriptorTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
2,776
38.671429
131
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/formauth/FormAuthUnitTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
16,941
44.178667
117
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/formauth/LogoutServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
2,308
38.810345
130
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/formauth/SecureServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
2,863
39.914286
130
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/formauth/SecuredPostServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2008, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
3,133
40.786667
122
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/listener/UnescapedURITestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
4,356
39.719626
178
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/listener/EchoServlet.java
package org.jboss.as.test.integration.web.listener; import java.io.IOException; import java.nio.charset.StandardCharsets; import jakarta.servlet.ServletException; import jakarta.servlet.annotation.WebServlet; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servl...
697
32.238095
113
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/multipart/defaultservlet/DefaultServletMultipartConfigTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
3,366
37.261364
112
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/web/multipart/defaultservlet/MultipartFilter.java
package org.jboss.as.test.integration.web.multipart.defaultservlet; import jakarta.servlet.Filter; import jakarta.servlet.FilterChain; import jakarta.servlet.FilterConfig; import jakarta.servlet.ServletException; import jakarta.servlet.ServletRequest; import jakarta.servlet.ServletResponse; import jakarta.servlet.anno...
1,336
30.093023
132
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/jsp/JspTagTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
3,099
42.661972
130
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/ee/concurrent/DefaultContextServiceServletTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
2,893
39.760563
114
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/ee/concurrent/DefaultContextServiceTestServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
3,356
40.444444
113
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/ee/concurrent/TestServletRunnable.java
/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,391
35.242424
122
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/ee/naming/defaultbindings/concurrency/DefaultConcurrencyTestServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
3,326
39.573171
113
java
null
wildfly-main/testsuite/integration/web/src/test/java/org/jboss/as/test/integration/ee/naming/defaultbindings/concurrency/DefaultConcurrencyServletTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
2,267
35
125
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/package-info.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,338
43.633333
110
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/PermissionUtil.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,516
35.119048
119
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/ForwardJSPTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2020, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,705
37.112676
110
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/subsystem/package-info.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,182
41.25
87
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/subsystem/RemoveDeploymentPermissionsServerSetupTask.java
/* * JBoss, Home of Professional Open Source. * Copyright 2015, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
4,386
40
141
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/subsystem/ReloadableCliTestBase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2015, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
3,866
38.060606
118
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/subsystem/MinimumPermissionsTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2015, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
6,566
36.525714
192
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/subsystem/MaximumPermissionsTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2015, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
14,051
40.329412
177
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/ejbs/ReadSystemPropertyBean.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,571
37.341463
75
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/ejbs/ReadSystemPropertyRemote.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,319
40.25
70
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/ejbs/ReadSystemPropertyLocal.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,317
40.1875
70
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/module/package-info.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,215
45.769231
125
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/module/GrantModulePermissionsTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,865
33.53012
123
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/module/DenyModulePermissionsTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
3,726
35.539216
127
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/module/AbstractCustomModuleServerSetup.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
4,136
42.09375
127
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/module/LimitedModulePermissionsTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
3,898
34.445455
121
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/module/CheckJSMUtils.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,505
37.553846
126
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/servlets/package-info.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,158
43.576923
70
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/servlets/CallPermissionUtilServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,468
38.822581
120
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/servlets/JSMCheckServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,345
36.83871
133
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/servlets/PrintSystemPropertyServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,488
39.803279
126
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/servlets/ForwardServlet.java
/* * JBoss, Home of Professional Open Source. * Copyright 2020, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,973
36.961538
113
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/PropertyPermissionExpressionsTestCase.java
/* * Copyright 2019 Red Hat, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
7,323
46.251613
166
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/WarPPTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
6,149
41.708333
126
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/package-info.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,304
44
101
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/EarModulesPPTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
16,155
38.309002
135
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/PermissionParserExpressionsTestCase.java
/* * Copyright 2019 Red Hat, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
6,076
44.014815
186
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/EarLibInWarPPTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
3,623
37.967742
128
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/AbstractPPTestsWithLibrary.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
4,004
38.653465
125
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/SystemPropertiesSetup.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,633
40.897436
96
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/AbstractPropertyPermissionTests.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
7,991
36.876777
128
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/AbstractPPTestsWithJSP.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
5,214
36.25
128
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/EarWithLibPPTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
3,602
37.329787
123
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/propertypermission/WarWithLibPPTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
3,311
37.511628
123
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/custompermissions/AbstractGrantCustomPermissionTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2016, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,314
35.171875
96
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/custompermissions/Utils.java
/* * JBoss, Home of Professional Open Source. * Copyright 2016, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,234
41.169811
144
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/custompermissions/CustomPermission.java
/* * JBoss, Home of Professional Open Source. * Copyright 2016, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,373
35.157895
70
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/custompermissions/GrantCustomPermissionModuleTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2016, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,618
41.241935
131
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/custompermissions/AbstractCustomPermissionServerSetup.java
/* * JBoss, Home of Professional Open Source. * Copyright 2016, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
5,523
44.652893
139
java
null
wildfly-main/testsuite/integration/secman/src/test/java/org/jboss/as/testsuite/integration/secman/custompermissions/GrantCustomPermissionModuleMinimumPermissionTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2016, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
2,708
40.045455
132
java
null
wildfly-main/testsuite/integration/manualmode/src/test/java/org/jboss/as/test/manualmode/web/ssl/HTTPSWebConnectorTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2013, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
27,567
49.032668
160
java
null
wildfly-main/testsuite/integration/manualmode/src/test/java/org/jboss/as/test/manualmode/web/ssl/AbstractCertificateLoginModuleTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
12,570
50.101626
143
java
null
wildfly-main/testsuite/integration/manualmode/src/test/java/org/jboss/as/test/manualmode/ejb/Util.java
/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * ...
4,046
39.069307
117
java
null
wildfly-main/testsuite/integration/manualmode/src/test/java/org/jboss/as/test/manualmode/ejb/interceptor/serverside/SubstituteSampleBeanRemote.java
/* * JBoss, Home of Professional Open Source. * Copyright 2019, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,201
39.066667
70
java
null
wildfly-main/testsuite/integration/manualmode/src/test/java/org/jboss/as/test/manualmode/ejb/interceptor/serverside/InterceptorSubstituteTestCase.java
/* * JBoss, Home of Professional Open Source. * Copyright 2019, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
11,193
42.55642
136
java
null
wildfly-main/testsuite/integration/manualmode/src/test/java/org/jboss/as/test/manualmode/ejb/interceptor/serverside/UpdatedInterceptor.java
/* * JBoss, Home of Professional Open Source. * Copyright 2019, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * unde...
1,441
39.055556
92
java