PHP Classes

File: ANYEM_SHARED/anyem.resource.impl/ResourceWrapper.php

Recommend this page to a friend!
  Classes of Anis Halayem   Anyem   ANYEM_SHARED/anyem.resource.impl/ResourceWrapper.php   Download  
File: ANYEM_SHARED/anyem.resource.impl/ResourceWrapper.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Anyem
Exchange variable values between PHP servers
Author: By
Last change:
Date: 9 years ago
Size: 512 bytes
 

Contents

Class file image Download
<?php

/**
 *
 * @author Anis.Halayem
 */
class ResourceWrapper {
   
/**
     *
     * @var string
     */
   
private $_action;
   
   
/**
     *
     * @var ResourceImpl
     */
   
private $_resource;
   
    public function
__construct ($resource, $action) {
       
$this->_resource = $resource ;
       
$this->_action = $action ;
    }
   
    public function
getAction() {
        return
$this->_action;
    }
    public function
getResource() {
        return
$this->_resource;
    }
}