All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.swiesend.secretservice.Pair Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy