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:
@@ -46,7 +46,6 @@ public class ProxyBaseSoftwareModuleItem {
|
||||
* Default constructor.
|
||||
*/
|
||||
public ProxyBaseSoftwareModuleItem() {
|
||||
super();
|
||||
swId = RANDOM_OBJ.nextLong();
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -491,7 +491,6 @@ public class CommonDialogWindow extends Window {
|
||||
private final Field<?> field;
|
||||
|
||||
public ChangeListener(final Field<?> field) {
|
||||
super();
|
||||
this.field = field;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -25,7 +25,6 @@ public class SPUITabSheet extends TabSheet {
|
||||
* Constructor.
|
||||
*/
|
||||
public SPUITabSheet() {
|
||||
super();
|
||||
decorate();
|
||||
}
|
||||
|
||||
|
||||
@@ -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));
|
||||
|
||||
@@ -24,7 +24,7 @@ public final class SpringContextHelper {
|
||||
* Private Constructor.
|
||||
*/
|
||||
private SpringContextHelper() {
|
||||
super();
|
||||
// Utility class
|
||||
}
|
||||
|
||||
public static void setContext(final ApplicationContext context) {
|
||||
|
||||
Reference in New Issue
Block a user