001package jmri;
002
003/**
004 * A value of a permission.
005 *
006 * @author Daniel Bergqvist (C) 2024
007 */
008public interface PermissionValue {
009
010    /**
011     * Is this the default value of this permission?
012     * @return true if it's the default, false otherwise
013     */
014    boolean isDefault();
015
016}