mylyn-gitea/io.gitea.mylyn.core/src/io/gitea/mylyn/core/GiteaFlag.java

27 lines
445 B
Java

// Copyright (c) 2021, Fr.Terrot. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package io.gitea.mylyn.core;
/**
* A flag for Gitea attributes.
*
*/
public enum GiteaFlag {
/**
* Sets the attribute to ReadOnly.
*/
READ_ONLY,
/**
* Default Attribute
*/
ATTRIBUTE,
/**
* A flag to indicate, that an attribute describes a person.
*/
PEOPLE;
}