All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.securecodebox.persistence.defectdojo.model.HasId Maven / Gradle / Ivy

The newest version!
// SPDX-FileCopyrightText: the secureCodeBox authors
//
// SPDX-License-Identifier: Apache-2.0

package io.securecodebox.persistence.defectdojo.model;

/**
 * Interface to mark {@link Model models} which have an id
 * 

* This type is package private because it is an implementation detail of the models and * z should not be used outside of this package. *

*/ interface HasId { long getId(); void setId(long id); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy