@@ -14,7 +14,7 @@ application code. In the following examples, we assume you want to provide
14
14
In ` <spark dir>/conf/spark-defaults.com `
15
15
```
16
16
spark.geode.locators=192.168.1.47[10334]
17
- spark.geode.security-client-auth-init=com.gemstone .geode.security.templates.UserPasswordAuthInit.create
17
+ spark.geode.security-client-auth-init=org.apache .geode.security.templates.UserPasswordAuthInit.create
18
18
spark.geode.security-username=scott
19
19
spark.geode.security-password=tiger
20
20
```
@@ -24,7 +24,7 @@ Or in the Spark application code:
24
24
import org.apache.geode.spark.connector._
25
25
val sparkConf = new SparkConf()
26
26
.set(GeodeLocatorPropKey, "192.168.1.47[10334]")
27
- .set("spark.geode.security-client-auth-init", "com.gemstone .geode.security.templates.UserPasswordAuthInit.create")
27
+ .set("spark.geode.security-client-auth-init", "org.apache .geode.security.templates.UserPasswordAuthInit.create")
28
28
.set("spark.geode.security-username", "scott")
29
29
.set("spark.geode.security-password", "tiger")
30
30
```
@@ -35,7 +35,7 @@ After this, you can use all connector APIs without providing `GeodeConnectionCon
35
35
Here's the code that creates ` GeodeConnectionConf ` with the same set of
36
36
properties as the examples above:
37
37
```
38
- val props = Map("security-client-auth-init" -> "com.gemstone .geode.security.templates.UserPasswordAuthInit.create",
38
+ val props = Map("security-client-auth-init" -> "org.apache .geode.security.templates.UserPasswordAuthInit.create",
39
39
"security-username" -> "scott",
40
40
"security-password" -> "tiger")
41
41
val connConf = GeodeConnectionConf("192.168.1.47[10334]", props)
0 commit comments