blob: fa62756d6a79291b31f48b9e0f6f471da29c34b4 [file] [log] [blame]
<?php
/**
* File containing the ezcMailPop3TransportWrapper class.
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @filesource
* @package Mail
* @version //autogen//
* @subpackage Tests
*/
/**
* Class which exposes the protected methods from the POP3 transport and allows
* setting a custom connection, status and greeting (in order to use mock
* objects).
*
* For testing purposes only.
*
* @package Mail
* @version //autogen//
* @subpackage Tests
* @access private
*/
class ezcMailPop3TransportWrapper extends ezcMailPop3Transport
{
/**
* Sets the specified connection to the transport.
*
* @param ezcMailTransportConnection $connection
*/
public function setConnection( ezcMailTransportConnection $connection )
{
$this->connection = $connection;
}
/**
* Sets the specified greeting to the transport.
*
* @param string $greeting
*/
public function setGreeting( $greeting )
{
$this->greeting = $greeting;
}
/**
* Returns the current state of the IMAP transport.
*
* @return int
*/
public function getStatus()
{
return $this->state;
}
/**
* Sets the current state of the IMAP transport to the specified state.
*
* @param int $status
*/
public function setStatus( $status )
{
$this->state = $status;
}
}
?>