Skip to content

Commit e204537

Browse files
committed
Move the 'security' package to be within the RC server.
This package is used by RC to allow tests of sites secured by HTTPS. As such, it's not part of the webdriver-specific server.
1 parent 54c0a29 commit e204537

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

java/server/src/cybervillains/build.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ java_library(name = "cybervillains",
44
"**/*.java",
55
],
66
deps = [
7-
"//java/server/src/org/openqa/selenium/security",
7+
"//java/server/src/org/openqa/selenium/server/security",
88
"//third_party/java/bouncycastle",
99
"//third_party/java/jetty:jetty-for-rc",
1010
])

java/server/src/cybervillains/ca/KeyStoreManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import org.bouncycastle.jcajce.provider.config.ConfigurableProvider;
44
import org.bouncycastle.jce.provider.BouncyCastleProvider;
5-
import org.openqa.selenium.security.CertificateGenerator;
6-
import org.openqa.selenium.security.KeyAndCert;
5+
import org.openqa.selenium.server.security.CertificateGenerator;
6+
import org.openqa.selenium.server.security.KeyAndCert;
77

88
import java.io.File;
99
import java.io.FileInputStream;

java/server/src/org/openqa/selenium/security/CertificateGenerator.java renamed to java/server/src/org/openqa/selenium/server/security/CertificateGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
limitations under the License.
1616
*/
1717

18-
package org.openqa.selenium.security;
18+
package org.openqa.selenium.server.security;
1919

2020
import com.google.common.base.Throwables;
2121

java/server/src/org/openqa/selenium/security/KeyAndCert.java renamed to java/server/src/org/openqa/selenium/server/security/KeyAndCert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
limitations under the License.
1616
*/
1717

18-
package org.openqa.selenium.security;
18+
package org.openqa.selenium.server.security;
1919

2020
import com.google.common.base.Preconditions;
2121

File renamed without changes.

0 commit comments

Comments
 (0)