mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
refactored tenant mgt component
This commit is contained in:
parent
e3c4765650
commit
2caf5a4f28
@ -25,7 +25,7 @@
|
||||
</parent>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>io.entgra.tenant.mgt.common</artifactId>
|
||||
<artifactId>io.entgra.device.mgt.core.tenant.mgt.common</artifactId>
|
||||
<name>Entgra IoT - Tenant Manager Common</name>
|
||||
<description>Entgra IoT - Tenant Manager Common</description>
|
||||
<packaging>bundle</packaging>
|
||||
@ -46,7 +46,7 @@
|
||||
org.apache.commons.logging,
|
||||
org.wso2.carbon.stratos.common.beans
|
||||
</Import-Package>
|
||||
<Export-Package>io.entgra.tenant.mgt.common.*</Export-Package>
|
||||
<Export-Package>io.entgra.device.mgt.core.tenant.mgt.common.*</Export-Package>
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
@ -15,7 +15,7 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.entgra.tenant.mgt.common.exception;
|
||||
package io.entgra.device.mgt.core.tenant.mgt.common.exception;
|
||||
|
||||
public class TenantMgtException extends Exception {
|
||||
|
||||
@ -15,9 +15,9 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.entgra.tenant.mgt.common.spi;
|
||||
package io.entgra.device.mgt.core.tenant.mgt.common.spi;
|
||||
|
||||
import io.entgra.tenant.mgt.common.exception.TenantMgtException;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.common.exception.TenantMgtException;
|
||||
import org.wso2.carbon.stratos.common.beans.TenantInfoBean;
|
||||
|
||||
public interface TenantManagerService {
|
||||
@ -25,7 +25,7 @@
|
||||
</parent>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>io.entgra.tenant.mgt.core</artifactId>
|
||||
<artifactId>io.entgra.device.mgt.core.tenant.mgt.core</artifactId>
|
||||
<name>Entgra IoT - Tenant Manager Core</name>
|
||||
<description>Entgra IoT - Tenant Manager Core</description>
|
||||
<packaging>bundle</packaging>
|
||||
@ -46,7 +46,7 @@
|
||||
<Bundle-Name>${project.artifactId}</Bundle-Name>
|
||||
<Bundle-Version>${carbon.device.mgt.version}</Bundle-Version>
|
||||
<Bundle-Description>Tenant Management Core Bundle</Bundle-Description>
|
||||
<Private-Package>io.entgra.tenant.mgt.core.internal</Private-Package>
|
||||
<Private-Package>io.entgra.device.mgt.core.tenant.mgt.core.internal</Private-Package>
|
||||
<Import-Package>
|
||||
org.osgi.framework.*;version="${imp.package.version.osgi.framework}",
|
||||
org.osgi.service.*;version="${imp.package.version.osgi.service}",
|
||||
@ -56,7 +56,7 @@
|
||||
org.wso2.carbon.device.mgt.core,
|
||||
org.wso2.carbon.user.api,
|
||||
org.wso2.carbon.registry.core.exceptions,
|
||||
io.entgra.tenant.mgt.common.*,
|
||||
io.entgra.device.mgt.core.tenant.mgt.common.*,
|
||||
org.wso2.carbon.stratos.common.beans,
|
||||
org.wso2.carbon.stratos.common.exception,
|
||||
org.wso2.carbon.stratos.common.listeners,
|
||||
@ -70,8 +70,8 @@
|
||||
org.wso2.carbon.context
|
||||
</Import-Package>
|
||||
<Export-Package>
|
||||
!io.entgra.tenant.mgt.core.internal,
|
||||
io.entgra.tenant.mgt.core.*
|
||||
!io.entgra.device.mgt.core.tenant.mgt.core.internal,
|
||||
io.entgra.device.mgt.core.tenant.mgt.core.*
|
||||
</Export-Package>
|
||||
</instructions>
|
||||
</configuration>
|
||||
@ -123,7 +123,7 @@
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.entgra.device.mgt.core</groupId>
|
||||
<artifactId>io.entgra.tenant.mgt.common</artifactId>
|
||||
<artifactId>io.entgra.device.mgt.core.tenant.mgt.common</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.wso2.carbon</groupId>
|
||||
@ -15,9 +15,9 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.entgra.tenant.mgt.core;
|
||||
package io.entgra.device.mgt.core.tenant.mgt.core;
|
||||
|
||||
import io.entgra.tenant.mgt.common.exception.TenantMgtException;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.common.exception.TenantMgtException;
|
||||
import org.wso2.carbon.stratos.common.beans.TenantInfoBean;
|
||||
|
||||
public interface TenantManager {
|
||||
@ -15,14 +15,14 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.entgra.tenant.mgt.core.impl;
|
||||
package io.entgra.device.mgt.core.tenant.mgt.core.impl;
|
||||
|
||||
import io.entgra.application.mgt.common.exception.ApplicationManagementException;
|
||||
import io.entgra.application.mgt.core.config.ConfigurationManager;
|
||||
import io.entgra.application.mgt.common.services.ApplicationManager;
|
||||
import io.entgra.tenant.mgt.core.TenantManager;
|
||||
import io.entgra.tenant.mgt.common.exception.TenantMgtException;
|
||||
import io.entgra.tenant.mgt.core.internal.TenantMgtDataHolder;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.core.TenantManager;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.common.exception.TenantMgtException;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.core.internal.TenantMgtDataHolder;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
||||
@ -15,11 +15,11 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.entgra.tenant.mgt.core.impl;
|
||||
package io.entgra.device.mgt.core.tenant.mgt.core.impl;
|
||||
|
||||
import io.entgra.tenant.mgt.common.spi.TenantManagerService;
|
||||
import io.entgra.tenant.mgt.common.exception.TenantMgtException;
|
||||
import io.entgra.tenant.mgt.core.internal.TenantMgtDataHolder;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.common.spi.TenantManagerService;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.common.exception.TenantMgtException;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.core.internal.TenantMgtDataHolder;
|
||||
import org.wso2.carbon.stratos.common.beans.TenantInfoBean;
|
||||
|
||||
public class TenantManagerServiceImpl implements TenantManagerService {
|
||||
@ -15,10 +15,10 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.entgra.tenant.mgt.core.internal;
|
||||
package io.entgra.device.mgt.core.tenant.mgt.core.internal;
|
||||
|
||||
import io.entgra.application.mgt.common.services.ApplicationManager;
|
||||
import io.entgra.tenant.mgt.core.TenantManager;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.core.TenantManager;
|
||||
import org.wso2.carbon.device.mgt.common.metadata.mgt.WhiteLabelManagementService;
|
||||
import org.wso2.carbon.user.core.service.RealmService;
|
||||
|
||||
@ -15,14 +15,14 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.entgra.tenant.mgt.core.internal;
|
||||
package io.entgra.device.mgt.core.tenant.mgt.core.internal;
|
||||
|
||||
import io.entgra.application.mgt.common.services.ApplicationManager;
|
||||
import io.entgra.tenant.mgt.common.spi.TenantManagerService;
|
||||
import io.entgra.tenant.mgt.core.TenantManager;
|
||||
import io.entgra.tenant.mgt.core.impl.TenantManagerImpl;
|
||||
import io.entgra.tenant.mgt.core.impl.TenantManagerServiceImpl;
|
||||
import io.entgra.tenant.mgt.core.listener.DeviceMgtTenantListener;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.common.spi.TenantManagerService;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.core.TenantManager;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.core.impl.TenantManagerImpl;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.core.impl.TenantManagerServiceImpl;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.core.listener.DeviceMgtTenantListener;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.osgi.service.component.ComponentContext;
|
||||
@ -32,7 +32,7 @@ import org.wso2.carbon.stratos.common.listeners.TenantMgtListener;
|
||||
import org.wso2.carbon.user.core.service.RealmService;
|
||||
|
||||
/**
|
||||
* @scr.component name="org.wso2.carbon.devicemgt.tenant.manager" immediate="true"
|
||||
* @scr.component name="io.entgra.device.mgt.core.tenant.manager" immediate="true"
|
||||
* @scr.reference name="org.wso2.carbon.application.mgt.service"
|
||||
* interface="io.entgra.application.mgt.common.services.ApplicationManager"
|
||||
* cardinality="1..1"
|
||||
@ -15,11 +15,11 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package io.entgra.tenant.mgt.core.listener;
|
||||
package io.entgra.device.mgt.core.tenant.mgt.core.listener;
|
||||
|
||||
import io.entgra.tenant.mgt.core.TenantManager;
|
||||
import io.entgra.tenant.mgt.common.exception.TenantMgtException;
|
||||
import io.entgra.tenant.mgt.core.internal.TenantMgtDataHolder;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.core.TenantManager;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.common.exception.TenantMgtException;
|
||||
import io.entgra.device.mgt.core.tenant.mgt.core.internal.TenantMgtDataHolder;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.stratos.common.beans.TenantInfoBean;
|
||||
@ -31,8 +31,8 @@
|
||||
<description>Entgra IoT - Tenant Management Component</description>
|
||||
|
||||
<modules>
|
||||
<module>io.entgra.tenant.mgt.core</module>
|
||||
<module>io.entgra.tenant.mgt.common</module>
|
||||
<module>io.entgra.device.mgt.core.tenant.mgt.core</module>
|
||||
<module>io.entgra.device.mgt.core.tenant.mgt.common</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
@ -33,11 +33,11 @@
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>io.entgra.device.mgt.core</groupId>
|
||||
<artifactId>io.entgra.tenant.mgt.core</artifactId>
|
||||
<artifactId>io.entgra.device.mgt.core.tenant.mgt.core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.entgra.device.mgt.core</groupId>
|
||||
<artifactId>io.entgra.tenant.mgt.common</artifactId>
|
||||
<artifactId>io.entgra.device.mgt.core.tenant.mgt.common</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
@ -93,10 +93,10 @@
|
||||
<bundles>
|
||||
<!--<bundleDef>{groupId}:{artifactId}:{version}</bundleDef>-->
|
||||
<bundleDef>
|
||||
io.entgra.device.mgt.core:io.entgra.tenant.mgt.core:${carbon.device.mgt.version}
|
||||
io.entgra.device.mgt.core:io.entgra.device.mgt.core.tenant.mgt.core:${carbon.device.mgt.version}
|
||||
</bundleDef>
|
||||
<bundleDef>
|
||||
io.entgra.device.mgt.core:io.entgra.tenant.mgt.common:${carbon.device.mgt.version}
|
||||
io.entgra.device.mgt.core:io.entgra.device.mgt.core.tenant.mgt.common:${carbon.device.mgt.version}
|
||||
</bundleDef>
|
||||
</bundles>
|
||||
</configuration>
|
||||
|
||||
8
pom.xml
8
pom.xml
@ -49,7 +49,7 @@
|
||||
<!-- <module>components/logger</module>-->
|
||||
<!-- <module>components/task-mgt</module>-->
|
||||
<!-- <module>components/subtype-mgt</module>-->
|
||||
<!-- <module>components/tenant-mgt</module>-->
|
||||
<module>components/tenant-mgt</module>
|
||||
<module>components/operation-template-mgt</module>
|
||||
<!-- <module>features/device-mgt</module>-->
|
||||
<!-- <module>features/apimgt-extensions</module>-->
|
||||
@ -66,7 +66,7 @@
|
||||
<!-- <module>features/logger</module>-->
|
||||
<!-- <module>features/task-mgt</module>-->
|
||||
<!-- <module>features/subtype-mgt</module>-->
|
||||
<!-- <module>features/tenant-mgt</module>-->
|
||||
<module>features/tenant-mgt</module>
|
||||
<module>features/operation-template-mgt-plugin-feature</module>
|
||||
|
||||
</modules>
|
||||
@ -355,12 +355,12 @@
|
||||
<!-- Tenant Management dependencies -->
|
||||
<dependency>
|
||||
<groupId>io.entgra.device.mgt.core</groupId>
|
||||
<artifactId>io.entgra.tenant.mgt.common</artifactId>
|
||||
<artifactId>io.entgra.device.mgt.core.tenant.mgt.common</artifactId>
|
||||
<version>${carbon.device.mgt.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.entgra.device.mgt.core</groupId>
|
||||
<artifactId>io.entgra.tenant.mgt.core</artifactId>
|
||||
<artifactId>io.entgra.device.mgt.core.tenant.mgt.core</artifactId>
|
||||
<version>${carbon.device.mgt.version}</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user