_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; } }