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

com.github.endoscope.storage.jdbc.dto.GroupEntity Maven / Gradle / Ivy

The newest version!
package com.github.endoscope.storage.jdbc.dto;

import com.github.endoscope.core.Stats;

import java.beans.Transient;

public class GroupEntity extends Stats {
    private String id;

    @Transient
    public String getId() {
        return id;
    }

    @Transient
    public void setId(String id) {
        this.id = id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy