OC.L10N.register( "workflowengine", { "The given operator is invalid" : "El operador indicado es inválido", "The given regular expression is invalid" : "La expresión regular indicada es inválida", "The given file size is invalid" : "El tamaño de archivo indicado es inválido", "The given tag id is invalid" : "El id de la etiqueta es inválido", "The given IP range is invalid" : "El rango de IP's es inválido", "The given IP range is not valid for IPv4" : "El rango de IPs dado no es válido para IPv4", "The given IP range is not valid for IPv6" : "El rango de IPs dado no es válido para IPv6", "The given time span is invalid" : "El espacio de tiempo dado es inválido", "The given start time is invalid" : "El tiempo inicial dado no es válido", "The given end time is invalid" : "El tiempo final dado no es válido", "The given group does not exist" : "El grupo dado no existe", "File" : "Archivo", "Operation #%s does not exist" : "La operación #%s no existe", "Operation %s does not exist" : "La operación %s no existe", "Operation %s is invalid" : "La operación %s es inválida", "Check %s does not exist" : "La validación %s no existe", "Check %s is invalid" : "La validación %s no es inválida", "Check #%s does not exist" : "La validación #%s no existe", "Check %s is invalid or does not exist" : "La validación %s es inválida o no existe", "Folder" : "Carpeta", "Images" : "Imágenes", "Predefined URLs" : "URLs predefinidos", "Files WebDAV" : "Archivos WebDAV", "Android client" : "Cliente Android", "iOS client" : "Cliente iOS", "Desktop client" : "Cliente de escritorio", "Cancel" : "Cancelar", "Delete" : "Borrar", "Save" : "Guardar", "matches" : "coincide", "does not match" : "No coincide", "is" : "es", "is not" : "no es", "File MIME type" : "Tipo MIME del archivo", "File size (upload)" : "Tamaño del archivo (carga)", "less" : "menos", "less or equals" : "menos o igual", "greater or equals" : "mayor o igual", "greater" : "mayor", "Request remote address" : "Solicitar dirección remota", "matches IPv4" : "coincide con IPv4", "does not match IPv4" : "no coincide con IPv4", "matches IPv6" : "coincide con IPv6", "does not match IPv6" : "no coincide con IPv6", "File system tag" : "Etiqueta del sistema de archivos", "is tagged with" : "está etiquetado con", "is not tagged with" : "no está etiquetado con", "Request URL" : "Solicitar URL", "Request time" : "Tiempo de la solicitud", "between" : "entre", "not between" : "no entre", "Request user agent" : "Solicitar agente de usuario", "User group membership" : "Membresia al grupo de usuarios", "is member of" : "es miembro de", "is not member of" : "no es miembro de", "No results" : "No hay resultados", "%s (invisible)" : "%s (invisible) ", "%s (restricted)" : "%s (restringido)" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); moving-a-file-from-and-to-a-shared-folder'>add-integration-tests-for-moving-a-file-from-and-to-a-shared-folder Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Http/Client/IResponse.php
blob: 09189d770148460b9a9b36c6cecf6b672732a700 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
 * @author Lukas Reschke <lukas@owncloud.com>
 * @author Morris Jobke <hey@morrisjobke.de>
 * @author Robin Appelman <icewind@owncloud.com>
 *
 * @copyright Copyright (c) 2016, ownCloud, Inc.
 * @license AGPL-3.0
 *
 * This code is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License, version 3,
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License, version 3,
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 *
 */

namespace OCP\Http\Client;

/**
 * Interface IResponse
 *
 * @package OCP\Http
 * @since 8.1.0
 */
interface IResponse {
	/**
	 * @return string|resource
	 * @since 8.1.0
	 */
	public function getBody();

	/**
	 * @return int
	 * @since 8.1.0
	 */
	public function getStatusCode();

	/**
	 * @param $key
	 * @return string
	 * @since 8.1.0
	 */
	public function getHeader($key);

	/**
	 * @return array
	 * @since 8.1.0
	 */
	public function getHeaders();
}