Verification successful!
Your email will remain private and you will only be discoverable with it on your own server, or any related
servers configured by your system admin.
- If you would like to be globally discoverable, start the process here.
+ If you would like to be globally discoverable, start the process here.
If you chose to start the global publication process, wait until it is done before returning to your
client.
If the remote process is finished, or if you do not wish to start it at this time, you can now return to your diff --git a/src/test/java/io/kamax/mxisd/backend/exec/ExecDirectoryStoreTest.java b/src/test/java/io/kamax/mxisd/backend/exec/ExecDirectoryStoreTest.java index 46a2f02..edaf8e9 100644 --- a/src/test/java/io/kamax/mxisd/backend/exec/ExecDirectoryStoreTest.java +++ b/src/test/java/io/kamax/mxisd/backend/exec/ExecDirectoryStoreTest.java @@ -23,8 +23,8 @@ package io.kamax.mxisd.backend.exec; import io.kamax.matrix.MatrixID; import io.kamax.matrix.json.GsonUtil; import io.kamax.mxisd.config.ExecConfig; -import io.kamax.mxisd.controller.directory.v1.io.UserDirectorySearchResult; import io.kamax.mxisd.exception.InternalServerError; +import io.kamax.mxisd.http.io.UserDirectorySearchResult; import org.apache.commons.lang3.StringUtils; import org.junit.Test; @@ -55,7 +55,7 @@ public class ExecDirectoryStoreTest extends ExecStoreTest { } private ExecConfig.Directory getCfg() { - ExecConfig.Directory cfg = new ExecConfig().compute().getDirectory(); + ExecConfig.Directory cfg = new ExecConfig().build().getDirectory(); assertFalse(cfg.isEnabled()); cfg.setEnabled(true); assertTrue(cfg.isEnabled()); diff --git a/src/test/java/io/kamax/mxisd/backend/exec/ExecIdentityStoreTest.java b/src/test/java/io/kamax/mxisd/backend/exec/ExecIdentityStoreTest.java index 16e258f..863c559 100644 --- a/src/test/java/io/kamax/mxisd/backend/exec/ExecIdentityStoreTest.java +++ b/src/test/java/io/kamax/mxisd/backend/exec/ExecIdentityStoreTest.java @@ -61,7 +61,7 @@ public class ExecIdentityStoreTest extends ExecStoreTest { } private ExecConfig.Identity getCfg() { - ExecConfig.Identity cfg = new ExecConfig().compute().getIdentity(); + ExecConfig.Identity cfg = new ExecConfig().build().getIdentity(); assertFalse(cfg.isEnabled()); cfg.setEnabled(true); assertTrue(cfg.isEnabled()); diff --git a/src/test/java/io/kamax/mxisd/backend/exec/ExecProfileStoreTest.java b/src/test/java/io/kamax/mxisd/backend/exec/ExecProfileStoreTest.java index ee5225d..70aa776 100644 --- a/src/test/java/io/kamax/mxisd/backend/exec/ExecProfileStoreTest.java +++ b/src/test/java/io/kamax/mxisd/backend/exec/ExecProfileStoreTest.java @@ -69,7 +69,7 @@ public class ExecProfileStoreTest extends ExecStoreTest { } private ExecConfig.Profile getCfg() { - ExecConfig.Profile cfg = new ExecConfig().compute().getProfile(); + ExecConfig.Profile cfg = new ExecConfig().build().getProfile(); assertFalse(cfg.isEnabled()); cfg.setEnabled(true); assertTrue(cfg.isEnabled()); diff --git a/src/test/java/io/kamax/mxisd/backend/rest/RestDirectoryProviderTest.java b/src/test/java/io/kamax/mxisd/backend/rest/RestDirectoryProviderTest.java index f861b99..8a75f38 100644 --- a/src/test/java/io/kamax/mxisd/backend/rest/RestDirectoryProviderTest.java +++ b/src/test/java/io/kamax/mxisd/backend/rest/RestDirectoryProviderTest.java @@ -24,7 +24,7 @@ import com.github.tomakehurst.wiremock.junit.WireMockRule; import io.kamax.matrix.MatrixID; import io.kamax.mxisd.config.MatrixConfig; import io.kamax.mxisd.config.rest.RestBackendConfig; -import io.kamax.mxisd.controller.directory.v1.io.UserDirectorySearchResult; +import io.kamax.mxisd.http.io.UserDirectorySearchResult; import org.apache.commons.lang3.StringUtils; import org.junit.Before; import org.junit.Rule;