@DomainNode
@Authorization(name = "READ", allowFromRelated = ["componentVersion"])
@Authorization(name = "ADMIN", allowFromRelated = ["componentVersion"])
@Authorization(name = "RELATE_FROM_COMPONENT", allowFromRelated = ["componentVersion"])
@Authorization(name = "AFFECT_ENTITIES_WITH_ISSUES", allowFromRelated = ["componentVersion"])
@Authorization(name = "RELATED_ISSUE_AFFECTED_ENTITY", allowFromRelated = ["componentVersion"])
@Authorization(name = "PART_OF_PROJECT", allowFromRelated = ["componentVersion"])
class InterfaceDefinition(var visibleSelfDefined: Boolean, var invisibleSelfDefined: Boolean) : BaseNode

InterfaceDefinition on a ComponentVersion Specifies if it is visible/invisible self-defined. Specifies if it is visible/invisible derived (and by which Relations) READ is granted if READ is granted on `componentVersion`

Constructors

Link copied to clipboard
constructor(visibleSelfDefined: Boolean, invisibleSelfDefined: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
@NodeRelationship(type = "COMPONENT_VERSION", direction = Direction.OUTGOING)
@FilterProperty
val componentVersion: LazyLoadingDelegate<ComponentVersion, NodePropertyDelegate.NodeProperty>

The ComponentVersion using the InterfaceSpecificationVersion

Link copied to clipboard
internal var fieldCache: MutableMap<String, Any?>
Link copied to clipboard
val graphQLId: ID

The unique id of this node

Link copied to clipboard
@Id
@GeneratedValue(generatorRef = "nodeIdGenerator")
internal var id: String?
Link copied to clipboard
@NodeRelationship(type = "INTERFACE_SPECIFICATION_VERSION", direction = Direction.OUTGOING)
@FilterProperty
@OrderProperty
val interfaceSpecificationVersion: LazyLoadingDelegate<InterfaceSpecificationVersion, NodePropertyDelegate.NodeProperty>

The InterfaceSpecificationVersion present on the ComponentVersion

Link copied to clipboard
@NodeRelationship(type = "INVISIBLE_DERIVED_BY", direction = Direction.OUTGOING)
@FilterProperty
val invisibleDerivedBy: LazyLoadingDelegate<Relation, NodeSetPropertyDelegate.NodeSetProperty>

Relations because of which `interfaceSpecificationVersion` is invisible derived on `componentVersion`

Link copied to clipboard
@FilterProperty
@OrderProperty
var invisibleSelfDefined: Boolean

If true, `interfaceSpecificationVersion`is self-defined invisible on the `componentVersion`

Link copied to clipboard
Link copied to clipboard
internal var isSaved: Boolean
Link copied to clipboard
@ConvertWith(converter = LazyLoadingContextConverter::class)
internal var lazyLoadingContext: LazyLoadingContext?
Link copied to clipboard
@Version
private var nodeVersion: Long

Version used for optimistic locking

Link copied to clipboard
internal var orderFields: MutableMap<String, Any?>?
Link copied to clipboard
internal val propertyLookup: MutableMap<String, PropertyDelegate<*>>
Link copied to clipboard
Link copied to clipboard
@NodeRelationship(type = "VISIBLE_DERIVED_BY", direction = Direction.OUTGOING)
@FilterProperty
val visibleDerivedBy: LazyLoadingDelegate<Relation, NodeSetPropertyDelegate.NodeSetProperty>

Relations because of which `interfaceSpecificationVersion` is visible derived on `componentVersion`

Link copied to clipboard
@NodeRelationship(type = "DEFINITION", direction = Direction.INCOMING)
@FilterProperty
val visibleInterface: LazyLoadingDelegate<Interface?, NodePropertyDelegate.NodeProperty>

If visible, the created Interface

Link copied to clipboard
@FilterProperty
@OrderProperty
var visibleSelfDefined: Boolean

If true, `interfaceSpecificationVersion`is self-defined visible on the `componentVersion`

Functions

Link copied to clipboard
operator override fun equals(other: Any?): Boolean
Link copied to clipboard
internal suspend fun getFromGraphQL(@Autowired nodeQueryParser: NodeQueryParser, dataFetchingEnvironment: DataFetchingEnvironment): Any?
Link copied to clipboard
internal fun <T : PropertyDelegate<*>> getProperty(property: KProperty1<*, *>): T
Link copied to clipboard
override fun hashCode(): Int
Link copied to clipboard
internal suspend fun <T : Node?> loadNodesOfRelationship(property: KProperty1<*, *>, loader: LazyLoadingSubqueryGenerator<T>.() -> Unit?)
Link copied to clipboard
protected fun <T : Node?> NodeProperty(): PropertyDelegateProvider<Node, NodePropertyDelegate<T>>
Link copied to clipboard
protected fun <T : Node> NodeSetProperty(): PropertyDelegateProvider<Node, NodeSetPropertyDelegate<T>>
Link copied to clipboard
internal fun registerQueryResult(entry: NodeQueryEntry<*>, queryResult: Any?)
Link copied to clipboard
open override fun toString(): String