/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package org.adullact.iparapheur.repo;

import java.io.Serializable;

/**
 *
 * @author vbarousse
 */
public class Collectivite implements Serializable {

    private boolean enabled;

    private String tenantDomain;

    private String title;

    private String description;

    private String siren;

    private String city;

    private String postalCode;

    private String country;

    public Collectivite(String tenantDomain) {
        this.tenantDomain = tenantDomain;
    }

    public String getTenantDomain() {
        return tenantDomain;
    }

    public void setTenantDomain(String tenantDomain) {
        this.tenantDomain = tenantDomain;
    }

    public boolean isEnabled() {
        return enabled;
    }

    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getSiren() {
        return siren;
    }

    public void setSiren(String siren) {
        this.siren = siren;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getCity() {
        return city;
    }

    public void setCity(String city) {
        this.city = city;
    }

    public String getCountry() {
        return country;
    }

    public void setCountry(String country) {
        this.country = country;
    }

    public String getPostalCode() {
        return postalCode;
    }

    public void setPostalCode(String postalCode) {
        this.postalCode = postalCode;
    }

}
