]> source.dussan.org Git - archiva.git/blob
15dc6d3ec9a22f77f0896d45e144f14bb1ec085a
[archiva.git] /
1 package org.apache.archiva.webapp.ui.services.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.util.Calendar;
23
24 /**
25  * @author Olivier Lamy
26  * @since 1.4-M3
27  */
28 @XmlRootElement( name = "applicationRuntimeInfo" )
29 public class ApplicationRuntimeInfo
30 {
31     private boolean devMode = false;
32
33     private boolean javascriptLog = false;
34
35     private String version;
36
37     private String buildNumber;
38
39     private long timestamp;
40
41     private String copyrightRange;
42
43     private boolean logMissingI18n;
44
45     private String baseUrl;
46
47     private String timestampStr;
48
49     public ApplicationRuntimeInfo()
50     {
51         this.devMode = Boolean.getBoolean( "archiva.devMode" );
52
53         this.javascriptLog = Boolean.getBoolean( "archiva.javascriptLog" );
54
55         this.logMissingI18n = Boolean.getBoolean( "archiva.logMissingI18n" );
56
57         this.copyrightRange = "2005 - " + Calendar.getInstance().get( Calendar.YEAR );
58     }
59
60     public boolean isDevMode()
61     {
62         return devMode;
63     }
64
65     public void setDevMode( boolean devMode )
66     {
67         this.devMode = devMode;
68     }
69
70     public boolean isJavascriptLog()
71     {
72         return javascriptLog;
73     }
74
75     public void setJavascriptLog( boolean javascriptLog )
76     {
77         this.javascriptLog = javascriptLog;
78     }
79
80     public String getVersion()
81     {
82         return version;
83     }
84
85     public void setVersion( String version )
86     {
87         this.version = version;
88     }
89
90     public String getBuildNumber()
91     {
92         return buildNumber;
93     }
94
95     public void setBuildNumber( String buildNumber )
96     {
97         this.buildNumber = buildNumber;
98     }
99
100     public long getTimestamp()
101     {
102         return timestamp;
103     }
104
105     public void setTimestamp( long timestamp )
106     {
107         this.timestamp = timestamp;
108     }
109
110     public String getCopyrightRange()
111     {
112         return copyrightRange;
113     }
114
115     public void setCopyrightRange( String copyrightRange )
116     {
117         this.copyrightRange = copyrightRange;
118     }
119
120     public boolean isLogMissingI18n()
121     {
122         return logMissingI18n;
123     }
124
125     public void setLogMissingI18n( boolean logMissingI18n )
126     {
127         this.logMissingI18n = logMissingI18n;
128     }
129
130     public String getBaseUrl()
131     {
132         return baseUrl;
133     }
134
135     public void setBaseUrl( String baseUrl )
136     {
137         this.baseUrl = baseUrl;
138     }
139
140     public String getTimestampStr()
141     {
142         return timestampStr;
143     }
144
145     public void setTimestampStr( String timestampStr )
146     {
147         this.timestampStr = timestampStr;
148     }
149
150     @Override
151     public String toString()
152     {
153         final StringBuilder sb = new StringBuilder();
154         sb.append( "ApplicationRuntimeInfo" );
155         sb.append( "{devMode=" ).append( devMode );
156         sb.append( ", javascriptLog=" ).append( javascriptLog );
157         sb.append( ", version='" ).append( version ).append( '\'' );
158         sb.append( ", buildNumber='" ).append( buildNumber ).append( '\'' );
159         sb.append( ", timestamp=" ).append( timestamp );
160         sb.append( ", copyrightRange='" ).append( copyrightRange ).append( '\'' );
161         sb.append( ", logMissingI18n=" ).append( logMissingI18n );
162         sb.append( ", baseUrl='" ).append( baseUrl ).append( '\'' );
163         sb.append( ", timestampStr='" ).append( timestampStr ).append( '\'' );
164         sb.append( '}' );
165         return sb.toString();
166     }
167 }