Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / foldertree / Version.java @ ba6ffffb

History | View | Annotate | Download (1.8 kB)

1 cae2a8db Christos Stathis
/*
2 cae2a8db Christos Stathis
 * Copyright 2011-2012 GRNET S.A. All rights reserved.
3 cae2a8db Christos Stathis
 *
4 cae2a8db Christos Stathis
 * Redistribution and use in source and binary forms, with or
5 cae2a8db Christos Stathis
 * without modification, are permitted provided that the following
6 cae2a8db Christos Stathis
 * conditions are met:
7 cae2a8db Christos Stathis
 *
8 cae2a8db Christos Stathis
 *   1. Redistributions of source code must retain the above
9 cae2a8db Christos Stathis
 *      copyright notice, this list of conditions and the following
10 cae2a8db Christos Stathis
 *      disclaimer.
11 cae2a8db Christos Stathis
 *
12 cae2a8db Christos Stathis
 *   2. Redistributions in binary form must reproduce the above
13 cae2a8db Christos Stathis
 *      copyright notice, this list of conditions and the following
14 cae2a8db Christos Stathis
 *      disclaimer in the documentation and/or other materials
15 cae2a8db Christos Stathis
 *      provided with the distribution.
16 cae2a8db Christos Stathis
 *
17 cae2a8db Christos Stathis
 * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18 cae2a8db Christos Stathis
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 cae2a8db Christos Stathis
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 cae2a8db Christos Stathis
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21 cae2a8db Christos Stathis
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 cae2a8db Christos Stathis
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 cae2a8db Christos Stathis
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24 cae2a8db Christos Stathis
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 cae2a8db Christos Stathis
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 cae2a8db Christos Stathis
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27 cae2a8db Christos Stathis
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 cae2a8db Christos Stathis
 * POSSIBILITY OF SUCH DAMAGE.
29 cae2a8db Christos Stathis
 *
30 cae2a8db Christos Stathis
 * The views and conclusions contained in the software and
31 cae2a8db Christos Stathis
 * documentation are those of the authors and should not be
32 cae2a8db Christos Stathis
 * interpreted as representing official policies, either expressed
33 cae2a8db Christos Stathis
 * or implied, of GRNET S.A.
34 cae2a8db Christos Stathis
 */
35 611de529 Christos Stathis
package gr.grnet.pithos.web.client.foldertree;
36 611de529 Christos Stathis
37 611de529 Christos Stathis
import java.util.Date;
38 611de529 Christos Stathis
39 611de529 Christos Stathis
public class Version {
40 611de529 Christos Stathis
        private int version;
41 611de529 Christos Stathis
        
42 611de529 Christos Stathis
        private Date date;
43 611de529 Christos Stathis
        
44 611de529 Christos Stathis
        public Version(int v, Date d) {
45 611de529 Christos Stathis
                version = v;
46 611de529 Christos Stathis
                date = d;
47 611de529 Christos Stathis
        }
48 611de529 Christos Stathis
49 611de529 Christos Stathis
        public int getVersion() {
50 611de529 Christos Stathis
                return version;
51 611de529 Christos Stathis
        }
52 611de529 Christos Stathis
53 611de529 Christos Stathis
        public Date getDate() {
54 611de529 Christos Stathis
                return date;
55 611de529 Christos Stathis
        }
56 611de529 Christos Stathis
}