mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-11-03 21:02:34 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@69 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
require_once("../lib/GroupNodeTable.class.php");
 | 
						|
 | 
						|
/**
 | 
						|
 * This class exposes an API for calling the XCAT PHP classes.
 | 
						|
 * It works in conjunction with webservice.php .
 | 
						|
 *
 | 
						|
 * This class delegates all of its methods to other classes
 | 
						|
 * that do all of the actual work.
 | 
						|
 */
 | 
						|
class XCATWebservice {
 | 
						|
	/**
 | 
						|
	 * @param String methodName		The name of a static method in the XCATWebservice class.
 | 
						|
	 * @param Hash   parameterHash	Parameter names (keys) and values (values) for the method to be called.
 | 
						|
	 */
 | 
						|
	function processRequest($methodName, $parameterHash) {
 | 
						|
		// Only static method can be called when the class name is also provided.
 | 
						|
		$classMethod = array("XCATWebservice", $methodName);
 | 
						|
 | 
						|
		$parameterValues = array_values($parameterHash);
 | 
						|
 | 
						|
		call_user_func_array($classMethod, $parameterValues);
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * @param String methodName		The name of the method whose parameter
 | 
						|
	 * 								 names we want.
 | 
						|
	 * @return	Returns an array of strings, representing the names of the
 | 
						|
	 * 			parameters this method expects. Parameters are provided in
 | 
						|
	 * 			the order they are expected.
 | 
						|
	 */
 | 
						|
	function getMethodParameters($methodName) {
 | 
						|
		$parameterNames = array();
 | 
						|
 | 
						|
		switch($methodName) {
 | 
						|
			case "getXCATNodeRows":
 | 
						|
				$parameterNames = array("nodeGroupName");
 | 
						|
				break;
 | 
						|
			// Add case statements for other methods here.
 | 
						|
			default:
 | 
						|
				$parameterNames = NULL;
 | 
						|
				break;
 | 
						|
		}
 | 
						|
 | 
						|
		return $parameterNames;
 | 
						|
	}
 | 
						|
 | 
						|
	function getXCATNodeRows($nodeGroupName) {
 | 
						|
		$html = GroupNodeTable::getNodeTableRow($nodeGroupName);
 | 
						|
 | 
						|
		echo $html;
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |