public synchronized CommandInfo getCommand()

in src/main/java/org/apache/sling/javax/activation/internal/OsgiMailcapCommandMap.java [164:179]


    public synchronized CommandInfo getCommand(String mimeType, String cmdName) {
        if (mimeType != null) {
            mimeType = mimeType.toLowerCase(Locale.ENGLISH);
        }

        CommandInfo command = null;

        command = getCommand(mimeType, cmdName, false);
        if (command != null) {
            return command;
        }

        command = getCommand(mimeType, cmdName, true);

        return command;
    }