Class SubmittedProposal

java.lang.Object
org.ivoa.dm.proposal.management.SubmittedProposal
All Implemented Interfaces:
org.ivoa.vodml.jaxb.XmlIdManagement, org.ivoa.vodml.jpa.JPAManipulations, org.ivoa.vodml.jpa.JPAManipulationsForObjectType<Long>

@Entity @VoDml(id="proposalManagement:SubmittedProposal", role=objectType) public class SubmittedProposal extends Object implements org.ivoa.vodml.jpa.JPAManipulationsForObjectType<Long>, org.ivoa.vodml.jaxb.XmlIdManagement
an instance of a proposal that has been submitted. objectType: SubmittedProposal
  • Field Details

    • _id

      protected Long _id
      inserted database key
    • submissionDate

      @VoDml(id="proposalManagement:SubmittedProposal.submissionDate", role=attribute, type="ivoa:datetime", typeRole=primitiveType) protected Date submissionDate
      the date that the proposal was submitted. : Attribute submissionDate : multiplicity 1
    • successful

      @VoDml(id="proposalManagement:SubmittedProposal.successful", role=attribute, type="ivoa:boolean", typeRole=primitiveType) protected Boolean successful
      the proposal can go on to allocation. : Attribute successful : multiplicity 1
    • reviewsCompleteDate

      @VoDml(id="proposalManagement:SubmittedProposal.reviewsCompleteDate", role=attribute, type="ivoa:datetime", typeRole=primitiveType) protected Date reviewsCompleteDate
      the date when all the proposals are due. : Attribute reviewsCompleteDate : multiplicity 1
    • reviews

      @VoDml(id="proposalManagement:SubmittedProposal.reviews", role=composition, type="proposalManagement:ProposalReview", typeRole=objectType) protected List<ProposalReview> reviews
      the reviews. composition reviews : ( Multiplicity : 1..* )
    • proposal

      @VoDml(id="proposalManagement:SubmittedProposal.proposal", role=reference, type="proposal:ObservingProposal", typeRole=objectType) protected ObservingProposal proposal
      ReferenceObject proposal : the proposal that was submitted. ( Multiplicity : 1 )
  • Constructor Details

    • SubmittedProposal

      public SubmittedProposal()
      Creates a new SubmittedProposal
    • SubmittedProposal

      public SubmittedProposal(ObservingProposal proposal, Date submissionDate, Boolean successful, Date reviewsCompleteDate, List<ProposalReview> reviews)
      full parameter constructor.
      Parameters:
      proposal - the proposal that was submitted.
      submissionDate - the date that the proposal was submitted.
      successful - the proposal can go on to allocation.
      reviewsCompleteDate - the date when all the proposals are due.
      reviews - the reviews.
    • SubmittedProposal

      public SubmittedProposal(SubmittedProposal other)
      Copy Constructor. Note that references will remain as is rather than be copied.
      Parameters:
      other - the object to be copied.
  • Method Details

    • getId

      public Long getId()
      Specified by:
      getId in interface org.ivoa.vodml.jpa.JPAManipulationsForObjectType<Long>
      Returns:
      the id
    • getXmlId

      public String getXmlId()
      getter for XMLID
      Specified by:
      getXmlId in interface org.ivoa.vodml.jaxb.XmlIdManagement
    • setXmlId

      public void setXmlId(String id)
      Specified by:
      setXmlId in interface org.ivoa.vodml.jaxb.XmlIdManagement
    • hasNaturalKey

      public boolean hasNaturalKey()
      Specified by:
      hasNaturalKey in interface org.ivoa.vodml.jaxb.XmlIdManagement
    • updateUsing

      public void updateUsing(SubmittedProposal other)
      Update this object with the content of the given object. Note that references will remain as is rather than be copied.
      Parameters:
      other - the object to be copied.
    • getProposal

      public ObservingProposal getProposal()
      Returns proposal Reference
      Returns:
      proposal Reference
    • setProposal

      public void setProposal(ObservingProposal pProposal)
      Defines proposal Reference
      Parameters:
      pProposal - reference to set
    • getSubmissionDate

      public Date getSubmissionDate()
      Returns submissionDate Attribute
      Returns:
      submissionDate Attribute
    • setSubmissionDate

      public void setSubmissionDate(Date pSubmissionDate)
      Defines submissionDate Attribute
      Parameters:
      pSubmissionDate - value to set
    • withSubmissionDate

      public SubmittedProposal withSubmissionDate(Date pSubmissionDate)
    • getSuccessful

      public Boolean getSuccessful()
      Returns successful Attribute
      Returns:
      successful Attribute
    • setSuccessful

      public void setSuccessful(Boolean pSuccessful)
      Defines successful Attribute
      Parameters:
      pSuccessful - value to set
    • withSuccessful

      public SubmittedProposal withSuccessful(Boolean pSuccessful)
    • getReviewsCompleteDate

      public Date getReviewsCompleteDate()
      Returns reviewsCompleteDate Attribute
      Returns:
      reviewsCompleteDate Attribute
    • setReviewsCompleteDate

      public void setReviewsCompleteDate(Date pReviewsCompleteDate)
      Defines reviewsCompleteDate Attribute
      Parameters:
      pReviewsCompleteDate - value to set
    • withReviewsCompleteDate

      public SubmittedProposal withReviewsCompleteDate(Date pReviewsCompleteDate)
    • getReviews

      public List<ProposalReview> getReviews()
      Returns reviews composition as an immutable list.
      Returns:
      reviews composition
    • setReviews

      public void setReviews(List<ProposalReview> pReviews)
      Defines whole reviews composition.
      Parameters:
      pReviews - composition to set
    • addToReviews

      public void addToReviews(ProposalReview p)
      Add a org.ivoa.dm.proposal.management.ProposalReview to the composition.
      Parameters:
      p - org.ivoa.dm.proposal.management.ProposalReview to add
    • removeFromReviews

      public void removeFromReviews(ProposalReview p)
      Remove a org.ivoa.dm.proposal.management.ProposalReview from the composition.
      Parameters:
      p - org.ivoa.dm.proposal.management.ProposalReview to remove
    • replaceInReviews

      public void replaceInReviews(ProposalReview _p)
      update a org.ivoa.dm.proposal.management.ProposalReview in the composition.
      Parameters:
      _p - org.ivoa.dm.proposal.management.ProposalReview to update the match is done via the database key
    • createSubmittedProposal

      public static SubmittedProposal createSubmittedProposal(Consumer<SubmittedProposal.SubmittedProposalBuilder> f)
      create a SubmittedProposal in functional builder style.
      Parameters:
      f - the functional builder.
      Returns:
      an object initialized from the builder.
    • forceLoad

      public void forceLoad()
      Specified by:
      forceLoad in interface org.ivoa.vodml.jpa.JPAManipulations
    • jpaClone

      public void jpaClone(jakarta.persistence.EntityManager em)
      Specified by:
      jpaClone in interface org.ivoa.vodml.jpa.JPAManipulations
    • persistRefs

      public void persistRefs(jakarta.persistence.EntityManager _em)
      Specified by:
      persistRefs in interface org.ivoa.vodml.jpa.JPAManipulations