diff -r 5b37998e522e -r 162c1de6545a web/lib/Zend/Cloud/DocumentService/Adapter/AbstractAdapter.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/Zend/Cloud/DocumentService/Adapter/AbstractAdapter.php Fri Mar 11 15:05:35 2011 +0100 @@ -0,0 +1,130 @@ +_documentClass = (string) $class; + return $this; + } + + /** + * Get the class for document objects + * + * @return string + */ + public function getDocumentClass() + { + return $this->_documentClass; + } + + /** + * Set the class for document set objects + * + * @param string $class + * @return Zend_Cloud_DocumentService_Adapter_AbstractAdapter + */ + public function setDocumentSetClass($class) + { + $this->_documentSetClass = (string) $class; + return $this; + } + + /** + * Get the class for document set objects + * + * @return string + */ + public function getDocumentSetClass() + { + return $this->_documentSetClass; + } + + /** + * Set the query class for query objects + * + * @param string $class + * @return Zend_Cloud_DocumentService_Adapter_AbstractAdapter + */ + public function setQueryClass($class) + { + $this->_queryClass = (string) $class; + return $this; + } + + /** + * Get the class for query objects + * + * @return string + */ + public function getQueryClass() + { + return $this->_queryClass; + } +}