-
Notifications
You must be signed in to change notification settings - Fork 13
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 #90 from DP-3T/develop
Release 1.0.12
- Loading branch information
Showing
20 changed files
with
5,022 additions
and
4 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
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
71 changes: 71 additions & 0 deletions
71
...fig-backend/src/main/java/org/dpppt/switzerland/backend/sdk/config/ws/model/FaqEntry.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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* Copyright (c) 2020 Ubique Innovation AG <https://www.ubique.ch> | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
* | ||
* SPDX-License-Identifier: MPL-2.0 | ||
*/ | ||
|
||
package org.dpppt.switzerland.backend.sdk.config.ws.model; | ||
|
||
public class FaqEntry { | ||
|
||
private String title; | ||
private String text; | ||
private String iconAndroid; | ||
private String iconIos; | ||
|
||
/* optional */ | ||
private String linkTitle; | ||
private String linkUrl; | ||
|
||
public String getTitle() { | ||
return title; | ||
} | ||
|
||
public void setTitle(String title) { | ||
this.title = title; | ||
} | ||
|
||
public String getText() { | ||
return text; | ||
} | ||
|
||
public void setText(String text) { | ||
this.text = text; | ||
} | ||
|
||
public String getIconAndroid() { | ||
return iconAndroid; | ||
} | ||
|
||
public void setIconAndroid(String iconAndroid) { | ||
this.iconAndroid = iconAndroid; | ||
} | ||
|
||
public String getIconIos() { | ||
return iconIos; | ||
} | ||
|
||
public void setIconIos(String iconIos) { | ||
this.iconIos = iconIos; | ||
} | ||
|
||
public String getLinkTitle() { | ||
return linkTitle; | ||
} | ||
|
||
public void setLinkTitle(String linkTitle) { | ||
this.linkTitle = linkTitle; | ||
} | ||
|
||
public String getLinkUrl() { | ||
return linkUrl; | ||
} | ||
|
||
public void setLinkUrl(String linkUrl) { | ||
this.linkUrl = linkUrl; | ||
} | ||
} |
77 changes: 77 additions & 0 deletions
77
...ain/java/org/dpppt/switzerland/backend/sdk/config/ws/model/WhatToDoPositiveTestTexts.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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* Copyright (c) 2020 Ubique Innovation AG <https://www.ubique.ch> | ||
* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
* | ||
* SPDX-License-Identifier: MPL-2.0 | ||
*/ | ||
|
||
package org.dpppt.switzerland.backend.sdk.config.ws.model; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
|
||
import java.util.List; | ||
|
||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public class WhatToDoPositiveTestTexts { | ||
|
||
private String enterCovidcodeBoxSupertitle; | ||
private String enterCovidcodeBoxTitle; | ||
private String enterCovidcodeBoxText; | ||
private String enterCovidcodeBoxButtonTitle; | ||
|
||
//dismissible will be ignored by clients | ||
private InfoBox infoBox; | ||
|
||
private List<FaqEntry> faqEntries; | ||
|
||
public String getEnterCovidcodeBoxSupertitle() { | ||
return enterCovidcodeBoxSupertitle; | ||
} | ||
|
||
public void setEnterCovidcodeBoxSupertitle(String enterCovidcodeBoxSupertitle) { | ||
this.enterCovidcodeBoxSupertitle = enterCovidcodeBoxSupertitle; | ||
} | ||
|
||
public String getEnterCovidcodeBoxTitle() { | ||
return enterCovidcodeBoxTitle; | ||
} | ||
|
||
public void setEnterCovidcodeBoxTitle(String enterCovidcodeBoxTitle) { | ||
this.enterCovidcodeBoxTitle = enterCovidcodeBoxTitle; | ||
} | ||
|
||
public String getEnterCovidcodeBoxText() { | ||
return enterCovidcodeBoxText; | ||
} | ||
|
||
public void setEnterCovidcodeBoxText(String enterCovidcodeBoxText) { | ||
this.enterCovidcodeBoxText = enterCovidcodeBoxText; | ||
} | ||
|
||
public String getEnterCovidcodeBoxButtonTitle() { | ||
return enterCovidcodeBoxButtonTitle; | ||
} | ||
|
||
public void setEnterCovidcodeBoxButtonTitle(String enterCovidcodeBoxButtonTitle) { | ||
this.enterCovidcodeBoxButtonTitle = enterCovidcodeBoxButtonTitle; | ||
} | ||
|
||
public InfoBox getInfoBox() { | ||
return infoBox; | ||
} | ||
|
||
public void setInfoBox(InfoBox infoBox) { | ||
this.infoBox = infoBox; | ||
} | ||
|
||
public List<FaqEntry> getFaqEntries() { | ||
return faqEntries; | ||
} | ||
|
||
public void setFaqEntries(List<FaqEntry> faqEntries) { | ||
this.faqEntries = faqEntries; | ||
} | ||
} |
Oops, something went wrong.