Created
          September 15, 2011 04:44 
        
      - 
      
- 
        Save krams915/1218561 to your computer and use it in GitHub Desktop. 
    Event.java
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package org.krams.tutorial.domain; | |
| import java.util.Date; | |
| import javax.persistence.Entity; | |
| import javax.persistence.GeneratedValue; | |
| import javax.persistence.Id; | |
| import javax.validation.constraints.NotNull; | |
| import org.springframework.format.annotation.DateTimeFormat; | |
| import org.springframework.format.annotation.DateTimeFormat.ISO; | |
| /** | |
| * A simple Event class. | |
| * | |
| * @author krams at {@link http://[email protected]} | |
| */ | |
| @Entity | |
| public class Event { | |
| @Id | |
| @GeneratedValue | |
| private Long id; | |
| @NotNull(message="Name: Please enter name of event") | |
| private String name; | |
| private String description; | |
| @NotNull(message="Participants: Please enter number of participants") | |
| private Integer participants; | |
| @NotNull(message="Date: Please enter a date") | |
| @DateTimeFormat(iso=ISO.DATE_TIME) | |
| private Date date; | |
| public Long getId() { | |
| return id; | |
| } | |
| public void setId(Long id) { | |
| this.id = id; | |
| } | |
| public String getName() { | |
| return name; | |
| } | |
| public void setName(String name) { | |
| this.name = name; | |
| } | |
| public String getDescription() { | |
| return description; | |
| } | |
| public void setDescription(String description) { | |
| this.description = description; | |
| } | |
| public Integer getParticipants() { | |
| return participants; | |
| } | |
| public void setParticipants(Integer participants) { | |
| this.participants = participants; | |
| } | |
| public Date getDate() { | |
| return date; | |
| } | |
| public void setDate(Date date) { | |
| this.date = date; | |
| } | |
| @Override | |
| public String toString() { | |
| return "Event [id=" + id + ", name=" + name + ", description=" | |
| + description + ", participants=" + participants + ", date=" | |
| + date + "]"; | |
| } | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment