io.securecodebox.persistence.defectdojo.model.HasId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of defectdojo-client Show documentation
Show all versions of defectdojo-client Show documentation
This library helps with interacting with the REST API of DefectDojo.
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