Yair Zaslavsky has uploaded a new change for review. Change subject: [WIP] core: Cleaning up common from authentication code. ......................................................................
[WIP] core: Cleaning up common from authentication code. Only "business entities" related code will remain in common Change-Id: Icc27e54842bc036eb7ca71781f3eb028044b003c Signed-off-by: Yair Zaslavsky <[email protected]> --- R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticatedPrincipal.java R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticatedRequestWrapper.java R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationFilter.java R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfile.java R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfileFactory.java R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfileManager.java R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationResult.java R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticatorManager.java R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/NegotiatingAuthenticator.java R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/NegotiationResult.java R backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/PasswordAuthenticator.java M backend/manager/modules/bll/pom.xml M ear/src/main/resources/META-INF/MANIFEST.MF 13 files changed, 7 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/92/24092/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticatedPrincipal.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticatedPrincipal.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticatedPrincipal.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticatedPrincipal.java diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticatedRequestWrapper.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticatedRequestWrapper.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticatedRequestWrapper.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticatedRequestWrapper.java diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticationFilter.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationFilter.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticationFilter.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationFilter.java diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfile.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfile.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfile.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfile.java diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfileFactory.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfileFactory.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfileFactory.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfileFactory.java diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfileManager.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfileManager.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfileManager.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationProfileManager.java diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticationResult.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationResult.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticationResult.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticationResult.java diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticatorManager.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticatorManager.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/AuthenticatorManager.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/AuthenticatorManager.java diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/NegotiatingAuthenticator.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/NegotiatingAuthenticator.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/NegotiatingAuthenticator.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/NegotiatingAuthenticator.java diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/NegotiationResult.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/NegotiationResult.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/NegotiationResult.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/NegotiationResult.java diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/PasswordAuthenticator.java b/backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/PasswordAuthenticator.java similarity index 100% rename from backend/manager/modules/common/src/main/java/org/ovirt/engine/core/authentication/PasswordAuthenticator.java rename to backend/manager/modules/authentication/src/main/java/org/ovirt/engine/core/authentication/PasswordAuthenticator.java diff --git a/backend/manager/modules/bll/pom.xml b/backend/manager/modules/bll/pom.xml index 1e82e6c..5c84323 100644 --- a/backend/manager/modules/bll/pom.xml +++ b/backend/manager/modules/bll/pom.xml @@ -30,6 +30,12 @@ <artifactId>common</artifactId> <version>${engine.version}</version> </dependency> + <dependency> + <groupId>${engine.groupId}</groupId> + <artifactId>authentication</artifactId> + <version>${engine.version}</version> + </dependency> + <dependency> <groupId>${engine.groupId}</groupId> diff --git a/ear/src/main/resources/META-INF/MANIFEST.MF b/ear/src/main/resources/META-INF/MANIFEST.MF index 0e2ecec..a42f573 100644 --- a/ear/src/main/resources/META-INF/MANIFEST.MF +++ b/ear/src/main/resources/META-INF/MANIFEST.MF @@ -21,6 +21,7 @@ org.ovirt.engine.core.utils, org.ovirt.otopi, org.ovirt.ovirt-host-deploy, + org.ovirt.engine.core.authentication, org.quartz, org.springframework, com.woorea.openstack.sdk services, -- To view, visit http://gerrit.ovirt.org/24092 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Icc27e54842bc036eb7ca71781f3eb028044b003c Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Yair Zaslavsky <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
