Merge branch 'portal' of https://github.com/Megala21/carbon-device-mgt into release-2.0.x

# Conflicts:
#	components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.navbar.nav-menu/nav-menu.hbs
revert-70aa11f8
charitha 8 years ago
commit 1c8e4b8de7

@ -0,0 +1,68 @@
/*
* Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.wso2.carbon.device.mgt.extensions.device.type.deployer.config;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for Device type authorization requirement.
* <p/>
* <p>The following schema fragment specifies the expected content contained within this class.
* <p/>
* <pre>
* &lt;complexType name="DeviceAuthorizationConfig">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="authorizationRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DeviceAuthorizationConfig", propOrder = {
"authorizationRequired"
})
public class DeviceAuthorizationConfig {
@XmlElement(name = "authorizationRequired")
protected boolean authorizationRequired;
/**
* Gets the value of the sharedWithAllTenants property.
*/
public boolean isAuthorizationRequired() {
return authorizationRequired;
}
/**
* Sets the value of the sharedWithAllTenants property.
*/
public void setAuthorizationRequired(boolean authorizationRequired) {
this.authorizationRequired = authorizationRequired;
}
}

@ -27,9 +27,9 @@ import javax.xml.bind.annotation.XmlRootElement;
/**
* <p>Java class for DeviceTypeConfiguration complex type.
*
* <p/>
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <p/>
* <pre>
* &lt;complexType name="DeviceTypeConfiguration">
* &lt;complexContent>
@ -41,14 +41,13 @@ import javax.xml.bind.annotation.XmlRootElement;
* &lt;element name="PushNotificationProvider" type="{}PushNotificationProvider"/>
* &lt;element name="License" type="{}License"/>
* &lt;element name="DataSource" type="{}DataSource"/>
* &lt;element name="DeviceAuthorizationConfig" type="{}DeviceAuthorizationConfig"/>
* &lt;/sequence>
* &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "DeviceTypeConfiguration")
@ -68,6 +67,8 @@ public class DeviceTypeConfiguration {
protected DataSource dataSource;
@XmlElement(name = "TaskConfiguration", required = true)
private TaskConfiguration taskConfiguration;
@XmlElement(name = "DeviceAuthorizationConfig", required = true)
protected DeviceAuthorizationConfig deviceAuthorizationConfig;
@XmlAttribute(name = "name")
protected String name;
@ -98,10 +99,8 @@ public class DeviceTypeConfiguration {
/**
* Gets the value of the deviceDetails property.
*
* @return
* possible object is
* @return possible object is
* {@link DeviceDetails }
*
*/
public DeviceDetails getDeviceDetails() {
return deviceDetails;
@ -110,10 +109,8 @@ public class DeviceTypeConfiguration {
/**
* Sets the value of the deviceDetails property.
*
* @param value
* allowed object is
* @param value allowed object is
* {@link DeviceDetails }
*
*/
public void setDeviceDetails(DeviceDetails value) {
this.deviceDetails = value;
@ -122,10 +119,8 @@ public class DeviceTypeConfiguration {
/**
* Gets the value of the features property.
*
* @return
* possible object is
* @return possible object is
* {@link Features }
*
*/
public Features getFeatures() {
return features;
@ -134,10 +129,8 @@ public class DeviceTypeConfiguration {
/**
* Sets the value of the features property.
*
* @param value
* allowed object is
* @param value allowed object is
* {@link Features }
*
*/
public void setFeatures(Features value) {
this.features = value;
@ -146,10 +139,8 @@ public class DeviceTypeConfiguration {
/**
* Gets the value of the provisioningConfig property.
*
* @return
* possible object is
* @return possible object is
* {@link ProvisioningConfig }
*
*/
public ProvisioningConfig getProvisioningConfig() {
return provisioningConfig;
@ -158,10 +149,8 @@ public class DeviceTypeConfiguration {
/**
* Sets the value of the provisioningConfig property.
*
* @param value
* allowed object is
* @param value allowed object is
* {@link ProvisioningConfig }
*
*/
public void setProvisioningConfig(ProvisioningConfig value) {
this.provisioningConfig = value;
@ -170,10 +159,8 @@ public class DeviceTypeConfiguration {
/**
* Gets the value of the pushNotificationProvider property.
*
* @return
* possible object is
* @return possible object is
* {@link PushNotificationProvider }
*
*/
public PushNotificationProvider getPushNotificationProvider() {
return pushNotificationProvider;
@ -182,10 +169,8 @@ public class DeviceTypeConfiguration {
/**
* Sets the value of the pushNotificationProvider property.
*
* @param value
* allowed object is
* @param value allowed object is
* {@link PushNotificationProvider }
*
*/
public void setPushNotificationProvider(PushNotificationProvider value) {
this.pushNotificationProvider = value;
@ -194,10 +179,8 @@ public class DeviceTypeConfiguration {
/**
* Gets the value of the license property.
*
* @return
* possible object is
* @return possible object is
* {@link License }
*
*/
public License getLicense() {
return license;
@ -206,10 +189,8 @@ public class DeviceTypeConfiguration {
/**
* Sets the value of the license property.
*
* @param value
* allowed object is
* @param value allowed object is
* {@link License }
*
*/
public void setLicense(License value) {
this.license = value;
@ -218,10 +199,8 @@ public class DeviceTypeConfiguration {
/**
* Gets the value of the dataSource property.
*
* @return
* possible object is
* @return possible object is
* {@link DataSource }
*
*/
public DataSource getDataSource() {
return dataSource;
@ -230,10 +209,8 @@ public class DeviceTypeConfiguration {
/**
* Sets the value of the dataSource property.
*
* @param value
* allowed object is
* @param value allowed object is
* {@link DataSource }
*
*/
public void setDataSource(DataSource value) {
this.dataSource = value;
@ -242,10 +219,8 @@ public class DeviceTypeConfiguration {
/**
* Gets the value of the name property.
*
* @return
* possible object is
* @return possible object is
* {@link String }
*
*/
public String getName() {
return name;
@ -254,13 +229,31 @@ public class DeviceTypeConfiguration {
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* @param value allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the authorizationRequired property.
*
* @return possible object is
* {@link DeviceAuthorizationConfig }
*/
public DeviceAuthorizationConfig getDeviceAuthorizationConfig() {
return deviceAuthorizationConfig;
}
/**
* Sets the value of the provisioningConfig property.
*
* @param value allowed object is
* {@link DeviceAuthorizationConfig }
*/
public void setDeviceAuthorizationConfig(DeviceAuthorizationConfig value) {
this.deviceAuthorizationConfig = value;
}
}

@ -30,11 +30,8 @@ import org.wso2.carbon.device.mgt.common.configuration.mgt.PlatformConfiguration
import org.wso2.carbon.device.mgt.common.license.mgt.License;
import org.wso2.carbon.device.mgt.common.license.mgt.LicenseManagementException;
import org.wso2.carbon.device.mgt.common.license.mgt.LicenseManager;
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.config.DeviceDetails;
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.config.DeviceTypeConfiguration;
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.config.Table;
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.config.*;
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.util.DeviceTypePluginConstants;
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.config.Feature;
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.exception.DeviceTypeDeployerFileException;
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.exception.DeviceTypeMgtPluginException;
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.template.dao.DeviceDAODefinition;
@ -65,18 +62,26 @@ public class DeviceTypeManager implements DeviceManager {
private DeviceTypePluginDAOManager deviceTypePluginDAOManager;
private LicenseManager licenseManager;
private boolean propertiesExist;
private boolean requiredDeviceTypeAuthorization;
private FeatureManager featureManager;
public DeviceTypeManager(DeviceTypeConfigIdentifier deviceTypeConfigIdentifier,
DeviceTypeConfiguration deviceTypeConfiguration) {
deviceType = deviceTypeConfigIdentifier.getDeviceType();
if (deviceTypeConfiguration.getFeatures() != null && deviceTypeConfiguration.getFeatures().getFeature() != null ) {
if (deviceTypeConfiguration.getFeatures() != null && deviceTypeConfiguration.getFeatures().
getFeature() != null) {
List<Feature> features = deviceTypeConfiguration.getFeatures().getFeature();
if (features != null) {
featureManager = new ConfigurationBasedFeatureManager(features);
}
}
if (deviceTypeConfiguration.getDeviceAuthorizationConfig() != null) {
requiredDeviceTypeAuthorization = deviceTypeConfiguration.getDeviceAuthorizationConfig().
isAuthorizationRequired();
} else {
requiredDeviceTypeAuthorization = true;
}
//add license to registry.
this.licenseManager = new RegistryBasedLicenseManager();
try {
@ -346,7 +351,7 @@ public class DeviceTypeManager implements DeviceManager {
@Override
public boolean requireDeviceAuthorization() {
return true;
return requiredDeviceTypeAuthorization;
}
@Override

@ -241,7 +241,7 @@ public class DeviceTypePluginDAO {
private String getPropertString(List<Device.Property> properties, String propertyName) {
for (Device.Property property : properties) {
if (property.getName().equals(propertyName)) {
if (property.getName() != null && property.getName().equals(propertyName)) {
return property.getValue();
}
}

@ -63,6 +63,10 @@
<SharedWithAllTenants>false</SharedWithAllTenants>
</ProvisioningConfig>
<DeviceAuthorizationConfig>
<authorizationRequired>true</authorizationRequired>
</DeviceAuthorizationConfig>
<PushNotificationProvider type="MQTT">
<FileBasedProperties>true</FileBasedProperties>
<!--if file based properties is set to false then the configuration will be picked from platform configuration-->

Loading…
Cancel
Save