Skip to content
This repository has been archived by the owner on Feb 5, 2020. It is now read-only.

Latest commit

 

History

History
54 lines (46 loc) · 1.65 KB

File metadata and controls

54 lines (46 loc) · 1.65 KB

Confluence Server: Built-in column names

Atlassian license

This is to grant the Apache 2.0 license to the below snippet of Confluence Server.

Unless you've been explicitly pointed to this repository, you likely won't need it. ✌️

private static final Set<String> ALL_BUILTIN_COLUMN_NAMES =
    Collections.unmodifiableSet(
        new HashSet<>(
            Arrays.asList(
                “description”,
                “environment”,
                “key”,
                “summary”,
                “type”,
                “parent”,
                “creator”,
                “project”,
                “priority”,
                “status”,
                “version”,
                “resolution”,
                “security”,
                “assignee”,
                “reporter”,
                “created”,
                “updated”,
                “due”,
                “component”,
                “components”,
                “votes”,
                “comments”,
                “attachments”,
                “subtasks”,
                “fixversion”,
                “timeoriginalestimate”,
                “timeestimate”,
                “statuscategory”
            )
        )
    );

License

Copyright (c) 2020 Atlassian and others. Apache 2.0 licensed, see LICENSE file.


With ❤️ from Atlassian