-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for importing Retroshare friends file
- Loading branch information
Showing
10 changed files
with
281 additions
and
8 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
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,45 @@ | ||
/* | ||
* Copyright (c) 2024 by David Gerber - https://zapek.com | ||
* | ||
* This file is part of Xeres. | ||
* | ||
* Xeres is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Xeres is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Xeres. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package io.xeres.app.service.backup; | ||
|
||
import jakarta.xml.bind.annotation.XmlElement; | ||
|
||
import java.util.List; | ||
|
||
class Group | ||
{ | ||
private List<PgpId> pgpIDs; | ||
|
||
public Group() | ||
{ | ||
// Default constructor | ||
} | ||
|
||
@XmlElement(name = "pgpID") | ||
public List<PgpId> getPgpIDs() | ||
{ | ||
return pgpIDs; | ||
} | ||
|
||
public void setPgpIDs(List<PgpId> pgpIDs) | ||
{ | ||
this.pgpIDs = pgpIDs; | ||
} | ||
} |
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,45 @@ | ||
/* | ||
* Copyright (c) 2024 by David Gerber - https://zapek.com | ||
* | ||
* This file is part of Xeres. | ||
* | ||
* Xeres is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Xeres is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Xeres. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package io.xeres.app.service.backup; | ||
|
||
import jakarta.xml.bind.annotation.XmlElement; | ||
|
||
import java.util.List; | ||
|
||
class PgpId | ||
{ | ||
private List<SslId> sslIDs; | ||
|
||
public PgpId() | ||
{ | ||
// Default constructor | ||
} | ||
|
||
@XmlElement(name = "sslID") | ||
public List<SslId> getSslIDs() | ||
{ | ||
return sslIDs; | ||
} | ||
|
||
public void setSslIDs(List<SslId> sslIDs) | ||
{ | ||
this.sslIDs = sslIDs; | ||
} | ||
} |
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,62 @@ | ||
/* | ||
* Copyright (c) 2024 by David Gerber - https://zapek.com | ||
* | ||
* This file is part of Xeres. | ||
* | ||
* Xeres is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Xeres is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Xeres. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package io.xeres.app.service.backup; | ||
|
||
import jakarta.xml.bind.annotation.XmlElement; | ||
import jakarta.xml.bind.annotation.XmlElementWrapper; | ||
import jakarta.xml.bind.annotation.XmlRootElement; | ||
|
||
import java.util.List; | ||
|
||
@XmlRootElement | ||
class Root | ||
{ | ||
private List<PgpId> pgpIDs; | ||
private List<Group> groups; | ||
|
||
public Root() | ||
{ | ||
// Default constructor | ||
} | ||
|
||
@XmlElementWrapper | ||
@XmlElement(name = "pgpID") | ||
public List<PgpId> getPgpIDs() | ||
{ | ||
return pgpIDs; | ||
} | ||
|
||
public void setPgpIDs(List<PgpId> pgpIDs) | ||
{ | ||
this.pgpIDs = pgpIDs; | ||
} | ||
|
||
@XmlElementWrapper | ||
@XmlElement(name = "group") | ||
public List<Group> getGroups() | ||
{ | ||
return groups; | ||
} | ||
|
||
public void setGroups(List<Group> groups) | ||
{ | ||
this.groups = groups; | ||
} | ||
} |
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,43 @@ | ||
/* | ||
* Copyright (c) 2024 by David Gerber - https://zapek.com | ||
* | ||
* This file is part of Xeres. | ||
* | ||
* Xeres is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Xeres is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Xeres. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package io.xeres.app.service.backup; | ||
|
||
import jakarta.xml.bind.annotation.XmlAttribute; | ||
|
||
class SslId | ||
{ | ||
private String certificate; | ||
|
||
public SslId() | ||
{ | ||
// Default constructor | ||
} | ||
|
||
@XmlAttribute(name = "certificate") | ||
public String getCertificate() | ||
{ | ||
return certificate; | ||
} | ||
|
||
public void setCertificate(String certificate) | ||
{ | ||
this.certificate = certificate; | ||
} | ||
} |
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
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
Oops, something went wrong.