<?php/** * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license */namespaceTemando\Shipping\Rest\Adapter;useTemando\Shipping\Rest\Exception\AdapterException;useTemando\Shipping\Rest\Request\AuthRequestInterface;useTemando\Shipping\Rest\Response\DataObject\Session;/** * The Temando Authentication API interface defines the supported subset of * operations as available at the Temando API. * * @package Temando\Shipping\Rest * @author Christoph Aßmann <christoph.assmann@netresearch.de> * @author Sebastian Ertner <sebastian.ertner@netresearch.de> * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link http://www.temando.com/ */interfaceAuthenticationApiInterface{/** * @param AuthRequestInterface $request * @return Session * @throws AdapterException */publicfunctionstartSession(AuthRequestInterface$request);/** * @return bool */publicfunctionendSession();}