Java Code Examples for javax.persistence.TemporalType#DATE

The following examples show how to use javax.persistence.TemporalType#DATE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DocumentData.java    From cia with Apache License 2.0 5 votes vote down vote up
/**
* Gets the made public date.
*
* @return the made public date
*/
  @Basic
  @Column(name = "MADE_PUBLIC_DATE")
  @Temporal(TemporalType.DATE)
  public Date getMadePublicDate() {
      return madePublicDate;
  }
 
Example 2
Source File: VoteData.java    From cia with Apache License 2.0 5 votes vote down vote up
/**
* Gets the vote date.
*
* @return the vote date
*/
  @Basic
  @Column(name = "VOTE_DATE")
  @Temporal(TemporalType.DATE)
  public Date getVoteDate() {
      return voteDate;
  }
 
Example 3
Source File: CustomerAccount.java    From Spring-MVC-Blueprints with MIT License 4 votes vote down vote up
@Temporal(TemporalType.DATE)
@Column(name = "startDate", nullable = false, length = 10)
public Date getStartDate() {
	return this.startDate;
}
 
Example 4
Source File: Catalog.java    From Spring-MVC-Blueprints with MIT License 4 votes vote down vote up
@Temporal(TemporalType.DATE)
@Column(name = "expiry", nullable = false, length = 10)
public Date getExpiry() {
	return this.expiry;
}
 
Example 5
Source File: Person.java    From Spring-MVC-Blueprints with MIT License 4 votes vote down vote up
@Temporal(TemporalType.DATE)
@Column(name = "birthDate", length = 10)
public Date getBirthDate() {
	return this.birthDate;
}
 
Example 6
Source File: HrmsEmployeeLeaves.java    From Spring-MVC-Blueprints with MIT License 4 votes vote down vote up
@Temporal(TemporalType.DATE)
@Column(name = "endDate", nullable = false, length = 10)
public Date getEndDate() {
	return this.endDate;
}
 
Example 7
Source File: HrmsEmployeeLeaves.java    From Spring-MVC-Blueprints with MIT License 4 votes vote down vote up
@Temporal(TemporalType.DATE)
@Column(name = "startDate", nullable = false, length = 10)
public Date getStartDate() {
	return this.startDate;
}
 
Example 8
Source File: Employee.java    From dpCms with Apache License 2.0 4 votes vote down vote up
@Temporal(TemporalType.DATE)
@Column(name = "MODIFY_DATE", length = 10)
public Date getModifyDate() {
	return this.modifyDate;
}
 
Example 9
Source File: User.java    From Spring-MVC-Blueprints with MIT License 4 votes vote down vote up
@Temporal(TemporalType.DATE)
@Column(name = "birthDate", nullable = false, length = 10)
public Date getBirthDate() {
	return this.birthDate;
}
 
Example 10
Source File: RiksdagenCommitteeDecisionTypeSummaryEmbeddedId.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the decisionDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Basic
@Column(name = "DECISION_DATE")
@Temporal(TemporalType.DATE)
public Date getDecisionDate() {
    return decisionDate;
}
 
Example 11
Source File: ViewRiksdagenCommitteeBallotDecisionPartySummary.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the createdDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Basic
@Column(name = "CREATED_DATE")
@Temporal(TemporalType.DATE)
public Date getCreatedDate() {
    return createdDate;
}
 
Example 12
Source File: ApplicationActionEventPagePeriodSummaryEmbeddedId.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the createdDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Basic
@Column(name = "CREATED_DATE")
@Temporal(TemporalType.DATE)
public Date getCreatedDate() {
    return createdDate;
}
 
Example 13
Source File: ViewRiksdagenPoliticianDocument.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the madePublicDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Basic
@Column(name = "MADE_PUBLIC_DATE")
@Temporal(TemporalType.DATE)
public Date getMadePublicDate() {
    return madePublicDate;
}
 
Example 14
Source File: ViewRiksdagenVoteDataBallotSummaryWeekly.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the voteDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Id
@Column(name = "VOTE_DATE")
@Temporal(TemporalType.DATE)
public Date getVoteDate() {
    return voteDate;
}
 
Example 15
Source File: ViewRiksdagenVoteDataBallotSummaryDaily.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the voteDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Id
@Column(name = "VOTE_DATE")
@Temporal(TemporalType.DATE)
public Date getVoteDate() {
    return voteDate;
}
 
Example 16
Source File: RiksdagenVoteDataBallotPartyPeriodSummaryEmbeddedId.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the voteDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Basic
@Column(name = "VOTE_DATE")
@Temporal(TemporalType.DATE)
public Date getVoteDate() {
    return voteDate;
}
 
Example 17
Source File: ViewRiksdagenCommitteeBallotDecisionSummary.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the publicDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Basic
@Column(name = "PUBLIC_DATE")
@Temporal(TemporalType.DATE)
public Date getPublicDate() {
    return publicDate;
}
 
Example 18
Source File: ViewRiksdagenCommittee.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the lastAssignmentDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Basic
@Column(name = "LAST_ASSIGNMENT_DATE")
@Temporal(TemporalType.DATE)
public Date getLastAssignmentDate() {
    return lastAssignmentDate;
}
 
Example 19
Source File: ViewRiksdagenCommitteeRoleMember.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the toDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Basic
@Column(name = "TO_DATE")
@Temporal(TemporalType.DATE)
public Date getToDate() {
    return toDate;
}
 
Example 20
Source File: ViewRiksdagenCommitteeDecisions.java    From cia with Apache License 2.0 3 votes vote down vote up
/**
 * Gets the value of the publicDate property.
 * 
 * @return
 *     possible object is
 *     {@link String }
 *     
 */
@Basic
@Column(name = "PUBLIC_DATE")
@Temporal(TemporalType.DATE)
public Date getPublicDate() {
    return publicDate;
}