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

de.objektkontor.wsc.container.common.SimpleKeySelector Maven / Gradle / Ivy

package de.objektkontor.wsc.container.common;

import de.objektkontor.wsc.container.Selector;

public class SimpleKeySelector implements Selector {

    private final K key;

    public SimpleKeySelector(K key) {
        this.key = key;
    }

    public K key() {
        return key;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy