* @template-extends Response> */ class DataDisplayResponse extends Response { /** * response data * @var string */ protected $data; /** * @param string $data the data to display * @param S $statusCode the Http status code, defaults to 200 * @param H $headers additional key value based headers * @since 8.1.0 */ public function __construct(string $data = '', int $statusCode = Http::STATUS_OK, array $headers = []) { parent::__construct($statusCode, $headers); $this->data = $data; $this->addHeader('Content-Disposition', 'inline; filename=""'); } /** * Outputs data. No processing is done. * @return string * @since 8.1.0 */ public function render() { return $this->data; } /** * Sets values in the data * @param string $data the data to display * @return DataDisplayResponse Reference to this object * @since 8.1.0 */ public function setData($data) { $this->data = $data; return $this; } /** * Used to get the set parameters * @return string the data * @since 8.1.0 */ public function getData() { return $this->data; } }
summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/wicket/CacheControl.java
blob: 567fb09f18ce50e761b7d61b0b070d776e1cd8f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * Copyright 2013 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;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Page attribute to control what date as last-modified for the browser cache.
 *
 * http://betterexplained.com/articles/how-to-optimize-your-site-with-http-caching
 * https://developers.google.com/speed/docs/best-practices/caching
 *
 * @author James Moger
 *
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface CacheControl {

	public static enum LastModified {
		BOOT, ACTIVITY, PROJECT, REPOSITORY, COMMIT, NONE
	}

	LastModified value() default LastModified.NONE;
}