Support for MS SQL Server and RabbitMQ 3.7 (#656)

* SQL server support.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Complete SQL server setup.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* DB2 support.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Add new rabbit http client version.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Cleanup JDBC driver dependencies.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Fix test.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Complete test utils for MSSQL.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Add and fix comments

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Fix Javadoc

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Removed super constr call

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Fixed merge bug.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Remove non null migrations. Won't work in production.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Added config profile for MS SQL server according to MySQL configuration

Signed-off-by: Dominic Schabel <dominic.schabel@bosch-si.com>

* Minor fix in status column

Signed-off-by: Dominic Schabel <dominic.schabel@bosch-si.com>
This commit is contained in:
Kai Zimmermann
2018-03-13 16:41:10 +01:00
committed by GitHub
parent ab2305fa80
commit 1f43862618
55 changed files with 1516 additions and 388 deletions

View File

@@ -46,7 +46,6 @@ public class ProxyBaseSoftwareModuleItem {
* Default constructor.
*/
public ProxyBaseSoftwareModuleItem() {
super();
swId = RANDOM_OBJ.nextLong();
}

View File

@@ -78,7 +78,6 @@ public class UploadHandler implements StreamVariable, Receiver, SucceededListene
UploadHandler(final String fileName, final long fileSize, final UploadLayout view, final long maxSize,
final Upload upload, final String mimeType, final SoftwareModule selectedSw,
final SoftwareModuleManagement softwareManagement) {
super();
this.aborted = false;
this.fileName = fileName;
this.fileSize = fileSize;

View File

@@ -491,7 +491,6 @@ public class CommonDialogWindow extends Window {
private final Field<?> field;
public ChangeListener(final Field<?> field) {
super();
this.field = field;
}

View File

@@ -30,7 +30,6 @@ public class SoftwareModuleIdName implements Serializable {
* of the {@link SoftwareModule}
*/
public SoftwareModuleIdName(final Long id, final String name) {
super();
this.id = id;
this.name = name;
}

View File

@@ -46,7 +46,6 @@ public abstract class AbstractGridComponentLayout extends VerticalLayout {
* @param managementUIState
*/
public AbstractGridComponentLayout(final VaadinMessageSource i18n, final UIEventBus eventBus) {
super();
this.i18n = i18n;
this.eventBus = eventBus;
}

View File

@@ -25,7 +25,6 @@ public class SPUITabSheet extends TabSheet {
* Constructor.
*/
public SPUITabSheet() {
super();
decorate();
}

View File

@@ -59,8 +59,6 @@ public class DurationField extends DateField {
* Creates a DurationField
*/
protected DurationField() {
super();
this.setTimeZone(TimeZone.getTimeZone(ZONEID_UTC));
durationFormat.setTimeZone(TimeZone.getTimeZone(ZONEID_UTC));
additionalFormat.setTimeZone(TimeZone.getTimeZone(ZONEID_UTC));

View File

@@ -24,7 +24,7 @@ public final class SpringContextHelper {
* Private Constructor.
*/
private SpringContextHelper() {
super();
// Utility class
}
public static void setContext(final ApplicationContext context) {