1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package com.xpn.xwiki.doc

File XWikiLock.java

 

Coverage histogram

../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

0
12
8
1
75
44
8
0.67
1.5
8
1

Classes

Class Line # Actions
XWikiLock 24 12 0% 8 0
1.0100%
 

Contributing tests

No tests hitting this source file were found.

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package com.xpn.xwiki.doc;
21   
22    import java.util.Date;
23   
 
24    public class XWikiLock
25    {
26    protected String userName;
27   
28    protected long docId;
29   
30    protected Date date;
31   
 
32  559 toggle public XWikiLock(long docId, String userName)
33    {
34  560 this.setDocId(docId);
35  556 this.setUserName(userName);
36  560 this.setDate(new Date());
37    }
38   
 
39  1127 toggle public XWikiLock()
40    {
41  1127 this.setDate(null);
42  1127 this.setUserName(null);
43  1127 this.setDocId(0);
44    }
45   
 
46  2450 toggle public String getUserName()
47    {
48  2450 return this.userName;
49    }
50   
 
51  2801 toggle public void setUserName(String userName)
52    {
53  2805 this.userName = userName;
54    }
55   
 
56  2472 toggle public long getDocId()
57    {
58  2471 return this.docId;
59    }
60   
 
61  3080 toggle public void setDocId(long docId)
62    {
63  3081 this.docId = docId;
64    }
65   
 
66  2503 toggle public Date getDate()
67    {
68  2509 return this.date;
69    }
70   
 
71  2808 toggle public void setDate(Date date)
72    {
73  2812 this.date = date;
74    }
75    }