Notes
Notes - notes.io |
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package entities;
import entities.utilizadores.Estudante;
import entities.utilizadores.Proponente;
import enums.Estado;
import enums.TipoTrabalho;
import java.io.Serializable;
import java.util.LinkedList;
import java.util.List;
import javax.persistence.ElementCollection;
import javax.persistence.Entity;
import static javax.persistence.FetchType.EAGER;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import javax.persistence.NamedQueries;
import javax.persistence.NamedQuery;
import javax.persistence.OneToOne;
/**
*
* @author Alexandre F.
*/
@Entity
@NamedQueries({
@NamedQuery(name = "getAllPropostas", query = "SELECT p FROM Proposta p")
,
@NamedQuery(name = "getAllPropostasAceites", query = "SELECT p FROM Proposta p WHERE p.estado = :estado")
})
public class Proposta implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int id;
private TipoTrabalho tipo;
private String titulo;
private List<AreaCientifica> areasCientificas;
@ManyToMany(mappedBy = "propostas")
private List<Proponente> proponentes;
@OneToOne
@JoinTable(name = "PROPOSTA_VALIDACAO",
joinColumns
= @JoinColumn(name = "PROPOSTA_ID", referencedColumnName = "ID"),
inverseJoinColumns
= @JoinColumn(name = "VALIDACAO_ID", referencedColumnName = "ID"))
private Validacao validacao;
private String resumo;
@ElementCollection(fetch = EAGER)
private List<String> objectivos;
// Maximo de 5 referencias
@ElementCollection(fetch = EAGER)
private List<String> bibliografia;
// Plano de trabalhos
private String planoTrabalho;
private String localRealizacao;
@ElementCollection(fetch = EAGER)
private List<String> requisitos;
/*
orçamento (incluindo itens para bibliografia, aquisição de material, aquisição
de equipamento ou outros) e os apoios (financeiros ou de outro tipo) que Estudante poderá
usufruir
*/
private double orcamento;
@OneToOne
@JoinColumn(name = "username")
public Estudante estudante;
private List<Document> artefactos;
//a proposta poderá ficar nos estados “aceite” ou “não aceite”,
private Estado estado;
public Proposta() {
//teste!
this.titulo = "teste";
// /teste
this.areasCientificas = new LinkedList<>();
this.objectivos = new LinkedList<>();
this.bibliografia = new LinkedList<>();
this.requisitos = new LinkedList<>();
this.estado = Estado.PENDENTE;
this.proponentes = new LinkedList<>();
}
public Proposta(TipoTrabalho tipo, String titulo, String resumo, String planoTrabalho, String localRealizacao, double orcamento) {
this();
this.tipo = tipo;
this.titulo = titulo;
this.resumo = resumo;
this.planoTrabalho = planoTrabalho;
this.localRealizacao = localRealizacao;
this.orcamento = orcamento;
}
public void adicionarProponente(Proponente proponente) {
this.proponentes.add(proponente);
}
public void adicionarReferenciaBibliografia(String referencia) {
if (this.bibliografia.size() >= 5) {
//throw exception nao mais que 5 referencias
} else {
this.bibliografia.add(referencia);
}
}
public void adicionarObjectivo(String objectivo) {
this.objectivos.add(objectivo);
}
public void adicionarRequisito(String requisito) {
this.requisitos.add(requisito);
}
public void adicionarArtefacto(Document document) {
this.artefactos.add(document);
}
//<editor-fold defaultstate="collapsed" desc="GETS E SETS DE TODOS OS ATRIBUTOS">
public List<Proponente> getProponentes() {
return proponentes;
}
public void setProponentes(List<Proponente> proponentes) {
this.proponentes = proponentes;
}
public Estado getEstado() {
return estado;
}
public void setEstado(Estado estado) {
this.estado = estado;
}
public TipoTrabalho getTipo() {
return tipo;
}
public void setTipo(TipoTrabalho tipo) {
this.tipo = tipo;
}
public String getTitulo() {
return titulo;
}
public void setTitulo(String titulo) {
this.titulo = titulo;
}
public List<AreaCientifica> getAreasCientificas() {
return areasCientificas;
}
public void setAreasCientificas(List<AreaCientifica> areasCientificas) {
this.areasCientificas = areasCientificas;
}
public String getResumo() {
return resumo;
}
public void setResumo(String resumo) {
this.resumo = resumo;
}
public List<String> getObjectivos() {
return objectivos;
}
public void setObjectivos(List<String> objectivos) {
this.objectivos = objectivos;
}
public List<String> getBibliografia() {
return bibliografia;
}
public void setBibliografia(List<String> bibliografia) {
this.bibliografia = bibliografia;
}
public String getPlanoTrabalho() {
return planoTrabalho;
}
public void setPlanoTrabalho(String planoTrabalho) {
this.planoTrabalho = planoTrabalho;
}
public String getLocalRealizacao() {
return localRealizacao;
}
public void setLocalRealizacao(String localRealizacao) {
this.localRealizacao = localRealizacao;
}
public List<String> getRequisitos() {
return requisitos;
}
public void setRequisitos(List<String> requisitos) {
this.requisitos = requisitos;
}
public double getOrcamento() {
return orcamento;
}
public void setOrcamento(double orcamento) {
this.orcamento = orcamento;
}
public Estado isAceite() {
return estado;
}
public void setAceite(Estado estado) {
this.estado = estado;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public Validacao getValidacao() {
return validacao;
}
public void setValidacao(Validacao validacao) {
this.validacao = validacao;
}
public Estudante getEstudante() {
return estudante;
}
public void setEstudante(Estudante estudante) {
this.estudante = estudante;
}
public List<Document> getArtefactos() {
return artefactos;
}
public void setArtefactos(List<Document> artefactos) {
this.artefactos = artefactos;
}
//</editor-fold>
}
|
Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 12 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team