/* * Copyright 2011 gitblit.com. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.gitblit.wicket.models; import java.io.Serializable; import java.text.ParseException; import java.util.ArrayList; import java.util.Date; import java.util.List; public class TicketModel implements Serializable, Comparable { private static final long serialVersionUID = 1L; public String id; public String name; public String title; public String state; public Date date; public String handler; public String milestone; public String email; public String author; public List comments; public List tags; public TicketModel() { state = "open"; comments = new ArrayList(); tags = new ArrayList(); } public TicketModel(String ticketName) throws ParseException { state = ""; name = ticketName; comments = new ArrayList(); tags = new ArrayList(); String[] chunks = name.split("_"); if (chunks.length == 3) { date = new Date(Long.parseLong(chunks[0]) * 1000l); title = chunks[1].replace('-', ' '); } } public static class Comment implements Serializable, Comparable { private static final long serialVersionUID = 1L; public String text; public String author; public Date date; public Comment(String text, Date date) { this.text = text; this.date = date; } public Comment(String filename, String content) throws ParseException { String[] chunks = filename.split("_", -1); this.date = new Date(Long.parseLong(chunks[1]) * 1000l); this.author = chunks[2]; this.text = content; } @Override public int compareTo(Comment o) { return date.compareTo(o.date); } } @Override public int compareTo(TicketModel o) { return date.compareTo(o.date); } }