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

net.customware.license.jira.prefs.JiraPreferencesFactory Maven / Gradle / Ivy

The newest version!
package net.customware.license.jira.prefs;

import java.util.prefs.Preferences;
import java.util.prefs.PreferencesFactory;

public class JiraPreferencesFactory implements PreferencesFactory {
    private Preferences systemRoot;

    public Preferences systemRoot() {
        if ( systemRoot == null )
            systemRoot = new JiraSystemPreferences();

        return systemRoot;
    }

    public Preferences userRoot() {
        return null;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy