de.swiesend.secretservice.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secret-service Show documentation
Show all versions of secret-service Show documentation
A Java library for storing secrets in the gnome-keyring over the DBus.
Simply set and get passwords in a gnome linux system.
The newest version!
/* File: org/freedesktop/Secret/Pair.java */
package de.swiesend.secretservice;
import org.freedesktop.dbus.Tuple;
import org.freedesktop.dbus.annotations.Position;
/**
* Just a typed container class
*/
public final class Pair extends Tuple {
@Position(0)
public final A a;
@Position(1)
public final B b;
public Pair(A a, B b) {
this.a = a;
this.b = b;
}
}