yakworks.commons.model.Named.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-commons Show documentation
Show all versions of groovy-commons Show documentation
common groovy and java utils
The newest version!
/*
* Copyright 2021 original authors
* SPDX-License-Identifier: Apache-2.0
*/
package yakworks.commons.model
import groovy.transform.CompileStatic
/**
* A marker for an entity that is has a name.
*/
@CompileStatic
trait Named {
String name
}