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

com.wadpam.docrest.test.Venue Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.wadpam.docrest.test;

/**
 *
 * @author os
 */
public class Venue {
    private String id;
    
    private String name;
    
    private int establishedYear;
    
    private Location location;

    public String getId() {
        return id;
    }

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

    public int getEstablishedYear() {
        return establishedYear;
    }

    public void setEstablishedYear(int establishedYear) {
        this.establishedYear = establishedYear;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Location getLocation() {
        return location;
    }

    public void setLocation(Location location) {
        this.location = location;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy