]> source.dussan.org Git - archiva.git/blob
7020a0f39d14eb56d6196d1748c8013dfda76985
[archiva.git] /
1 package org.apache.archiva.rest.api.model;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import javax.xml.bind.annotation.XmlRootElement;
22 import java.io.Serializable;
23
24 /**
25  * @author Olivier Lamy
26  * @since 1.4-M3
27  */
28 @XmlRootElement( name = "cacheEntry" )
29 public class CacheEntry
30     implements Serializable
31 {
32     private String key;
33
34     private long size;
35
36     private long cacheHits;
37
38     private long cacheMiss;
39
40     private String cacheHitRate;
41
42     private long inMemorySize;
43
44     public CacheEntry()
45     {
46         // no op
47     }
48
49     public CacheEntry( String key, long size, long cacheHits, long cacheMiss, String cacheHitRate, long inMemorySize )
50     {
51         this.key = key;
52         this.size = size;
53         this.cacheHits = cacheHits;
54         this.cacheMiss = cacheMiss;
55         this.cacheHitRate = cacheHitRate;
56         this.inMemorySize = inMemorySize;
57     }
58
59     public String getKey()
60     {
61         return key;
62     }
63
64     public void setKey( String key )
65     {
66         this.key = key;
67     }
68
69     public long getSize()
70     {
71         return size;
72     }
73
74     public void setSize( long size )
75     {
76         this.size = size;
77     }
78
79     public long getCacheHits()
80     {
81         return cacheHits;
82     }
83
84     public void setCacheHits( long cacheHits )
85     {
86         this.cacheHits = cacheHits;
87     }
88
89     public long getCacheMiss()
90     {
91         return cacheMiss;
92     }
93
94     public void setCacheMiss( long cacheMiss )
95     {
96         this.cacheMiss = cacheMiss;
97     }
98
99     public String getCacheHitRate()
100     {
101         return cacheHitRate;
102     }
103
104     public void setCacheHitRate( String cacheHitRate )
105     {
106         this.cacheHitRate = cacheHitRate;
107     }
108
109     public long getInMemorySize()
110     {
111         return inMemorySize;
112     }
113
114     public void setInMemorySize( long inMemorySize )
115     {
116         this.inMemorySize = inMemorySize;
117     }
118
119     @Override
120     public String toString()
121     {
122         final StringBuilder sb = new StringBuilder();
123         sb.append( "CacheEntry" );
124         sb.append( "{key='" ).append( key ).append( '\'' );
125         sb.append( ", size=" ).append( size );
126         sb.append( ", cacheHits=" ).append( cacheHits );
127         sb.append( ", cacheMiss=" ).append( cacheMiss );
128         sb.append( ", cacheHitRate='" ).append( cacheHitRate ).append( '\'' );
129         sb.append( ", inMemorySize=" ).append( inMemorySize );
130         sb.append( '}' );
131         return sb.toString();
132     }
133 }