Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/neomerx/json-api/src/Contracts/Schema/ErrorInterface.php
<?php declare(strict_types=1);

namespace
Neomerx\JsonApi\Contracts\Schema;

/**
 * Copyright 2015-2019 info@neomerx.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 Neomerx\JsonApi
 */
interface ErrorInterface
{
   
/**
     * Key for 'Source' field.
     */
   
const SOURCE_POINTER = 'pointer';

   
/**
     * Key for 'Source' field.
     */
   
const SOURCE_PARAMETER = 'parameter';

   
/**
     * Get a unique identifier for this particular occurrence of the problem.
     *
     * @return int|string|null
     */
   
public function getId();

   
/**
     * Get links that may lead to further details about the problem.
     *
     * @see LinkInterface
     *
     * @return null|iterable
     */
   
public function getLinks(): ?iterable;

   
/**
     * Get links that may lead to further details about the problem.
     *
     * @see BaseLinkInterface
     *
     * @return null|iterable
     */
   
public function getTypeLinks(): ?iterable;

   
/**
     * Get the HTTP status code applicable to this problem, expressed as a string value.
     *
     * @return string|null
     */
   
public function getStatus(): ?string;

   
/**
     * Get an application-specific error code, expressed as a string value.
     *
     * @return string|null
     */
   
public function getCode(): ?string;

   
/**
     * Get a short, human-readable summary of the problem.
     *
     * It should not change from occurrence to occurrence of the problem, except for purposes of localization.
     *
     * @return string|null
     */
   
public function getTitle(): ?string;

   
/**
     * Get a human-readable explanation specific to this occurrence of the problem.
     *
     * @return string|null
     */
   
public function getDetail(): ?string;

   
/**
     * An object containing references to the source of the error, optionally including any of the following members:
     *    "pointer"   - A JSON Pointer [RFC6901] to the associated entity in the request document
     *                  [e.g. "/data" for a primary data object, or "/data/attributes/title" for a specific attribute].
     *    "parameter" - An optional string indicating which query parameter caused the error.
     *
     * @return array|null
     */
   
public function getSource(): ?array;

   
/**
     * If error has meta information.
     *
     * @return bool
     */
   
public function hasMeta(): bool;

   
/**
     * Get error meta information.
     *
     * @return mixed
     */
   
public function getMeta();
}