This repository has been archived by the owner on Dec 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from alezor/master
- Loading branch information
Showing
46 changed files
with
2,056 additions
and
123,580 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8,963 changes: 0 additions & 8,963 deletions
8,963
testing/logs/log4j2/test/archive/rollingfile.2018-11-22-01-17-1
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-10 Bytes
testing/logs/log4j2/test/archive/rollingfile.2018-11-22-01-17-1.gz
Binary file not shown.
9,382 changes: 0 additions & 9,382 deletions
9,382
testing/logs/log4j2/test/archive/rollingfile.2018-11-22-04-17-1
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-10 Bytes
testing/logs/log4j2/test/archive/rollingfile.2018-11-22-04-17-1.gz
Binary file not shown.
Binary file not shown.
8,666 changes: 0 additions & 8,666 deletions
8,666
testing/logs/log4j2/test/archive/rollingfile.2018-11-22-05-05-1
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-10 Bytes
testing/logs/log4j2/test/archive/rollingfile.2018-11-22-05-05-1.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
testing/src/main/java/org/eclipse/kuksa/testing/Application.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 42 additions & 30 deletions
72
testing/src/main/java/org/eclipse/kuksa/testing/config/AppStoreConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,42 @@ | ||
package org.eclipse.kuksa.testing.config; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class AppStoreConfiguration { | ||
|
||
@Value("${appstore.address}") | ||
private String address; | ||
|
||
@Value("${appstore.username}") | ||
private String username; | ||
|
||
@Value("${appstore.password}") | ||
private String password; | ||
|
||
public String getAddress() { | ||
return address; | ||
} | ||
|
||
public String getUsername() { | ||
return username; | ||
} | ||
|
||
public String getPassword() { | ||
return password; | ||
} | ||
|
||
} | ||
/********************************************************************* | ||
* Copyright (c) 2019 Assystem GmbH [and others]. | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: Assystem GmbH | ||
**********************************************************************/ | ||
|
||
package org.eclipse.kuksa.testing.config; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class AppStoreConfiguration { | ||
|
||
@Value("${appstore.address}") | ||
private String address; | ||
|
||
@Value("${appstore.username}") | ||
private String username; | ||
|
||
@Value("${appstore.password}") | ||
private String password; | ||
|
||
public String getAddress() { | ||
return address; | ||
} | ||
|
||
public String getUsername() { | ||
return username; | ||
} | ||
|
||
public String getPassword() { | ||
return password; | ||
} | ||
|
||
} |
70 changes: 41 additions & 29 deletions
70
testing/src/main/java/org/eclipse/kuksa/testing/config/GlobalConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,41 @@ | ||
package org.eclipse.kuksa.testing.config; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class GlobalConfiguration { | ||
|
||
@Value("${DEVICE_ID}") | ||
private String deviceId; | ||
|
||
@Value("${SECURITY_TOKEN}") | ||
private String securityToken; | ||
|
||
/** | ||
* @return the deviceId | ||
*/ | ||
public String getDeviceId() { | ||
return deviceId; | ||
} | ||
|
||
/** | ||
* @return the securityToken | ||
*/ | ||
public String getSecurityToken() { | ||
return securityToken; | ||
} | ||
|
||
} | ||
/********************************************************************* | ||
* Copyright (c) 2019 Assystem GmbH [and others]. | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: Assystem GmbH | ||
**********************************************************************/ | ||
|
||
package org.eclipse.kuksa.testing.config; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class GlobalConfiguration { | ||
|
||
@Value("${DEVICE_ID}") | ||
private String deviceId; | ||
|
||
@Value("${SECURITY_TOKEN}") | ||
private String securityToken; | ||
|
||
/** | ||
* @return the deviceId | ||
*/ | ||
public String getDeviceId() { | ||
return deviceId; | ||
} | ||
|
||
/** | ||
* @return the securityToken | ||
*/ | ||
public String getSecurityToken() { | ||
return securityToken; | ||
} | ||
|
||
} |
152 changes: 82 additions & 70 deletions
152
testing/src/main/java/org/eclipse/kuksa/testing/config/HawkBitConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,82 @@ | ||
package org.eclipse.kuksa.testing.config; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class HawkBitConfiguration { | ||
|
||
@Value("${hawkbit.tenant}") | ||
private String tenant; | ||
|
||
@Value("${hawkbit.address}") | ||
private String address; | ||
|
||
@Value("${hawkbit.username}") | ||
private String username; | ||
|
||
@Value("${hawkbit.password}") | ||
private String password; | ||
|
||
/** | ||
* @return the tenant | ||
*/ | ||
public String getTenant() { | ||
return tenant; | ||
} | ||
|
||
/** | ||
* @return the address | ||
*/ | ||
public String getAddress() { | ||
return address; | ||
} | ||
|
||
/** | ||
* @param address the address to set | ||
*/ | ||
public void setAddress(String address) { | ||
this.address = address; | ||
} | ||
|
||
/** | ||
* @return the username | ||
*/ | ||
public String getUsername() { | ||
return username; | ||
} | ||
|
||
/** | ||
* @param username the username to set | ||
*/ | ||
public void setUsername(String username) { | ||
this.username = username; | ||
} | ||
|
||
/** | ||
* @return the password | ||
*/ | ||
public String getPassword() { | ||
return password; | ||
} | ||
|
||
/** | ||
* @param password the password to set | ||
*/ | ||
public void setPassword(String password) { | ||
this.password = password; | ||
} | ||
|
||
} | ||
/********************************************************************* | ||
* Copyright (c) 2019 Assystem GmbH [and others]. | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: Assystem GmbH | ||
**********************************************************************/ | ||
|
||
package org.eclipse.kuksa.testing.config; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class HawkBitConfiguration { | ||
|
||
@Value("${hawkbit.tenant}") | ||
private String tenant; | ||
|
||
@Value("${hawkbit.address}") | ||
private String address; | ||
|
||
@Value("${hawkbit.username}") | ||
private String username; | ||
|
||
@Value("${hawkbit.password}") | ||
private String password; | ||
|
||
/** | ||
* @return the tenant | ||
*/ | ||
public String getTenant() { | ||
return tenant; | ||
} | ||
|
||
/** | ||
* @return the address | ||
*/ | ||
public String getAddress() { | ||
return address; | ||
} | ||
|
||
/** | ||
* @param address the address to set | ||
*/ | ||
public void setAddress(String address) { | ||
this.address = address; | ||
} | ||
|
||
/** | ||
* @return the username | ||
*/ | ||
public String getUsername() { | ||
return username; | ||
} | ||
|
||
/** | ||
* @param username the username to set | ||
*/ | ||
public void setUsername(String username) { | ||
this.username = username; | ||
} | ||
|
||
/** | ||
* @return the password | ||
*/ | ||
public String getPassword() { | ||
return password; | ||
} | ||
|
||
/** | ||
* @param password the password to set | ||
*/ | ||
public void setPassword(String password) { | ||
this.password = password; | ||
} | ||
|
||
} |
Oops, something went wrong.