src/main/kotlin/de/uapcore/lightpit/types/IssueHistoryType.kt

Sat, 06 Jan 2024 20:32:56 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 06 Jan 2024 20:32:56 +0100
changeset 300
c7ee4cbfb86d
parent 232
296e12ff8d1c
permissions
-rw-r--r--

Added tag v1.2.2 for changeset 238de141d189

universe@232 1 /*
universe@232 2 * Copyright 2021 Mike Becker. All rights reserved.
universe@232 3 *
universe@232 4 * Redistribution and use in source and binary forms, with or without
universe@232 5 * modification, are permitted provided that the following conditions are met:
universe@232 6 *
universe@232 7 * 1. Redistributions of source code must retain the above copyright
universe@232 8 * notice, this list of conditions and the following disclaimer.
universe@232 9 *
universe@232 10 * 2. Redistributions in binary form must reproduce the above copyright
universe@232 11 * notice, this list of conditions and the following disclaimer in the
universe@232 12 * documentation and/or other materials provided with the distribution.
universe@232 13 *
universe@232 14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@232 15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@232 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@232 17 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@232 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@232 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@232 20 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@232 21 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@232 22 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@232 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@232 24 */
universe@232 25
universe@232 26 package de.uapcore.lightpit.types
universe@232 27
universe@232 28 enum class IssueHistoryType {
universe@232 29 New,
universe@232 30 Update,
universe@232 31 NewComment,
universe@232 32 UpdateComment
universe@232 33 }

mercurial