Skip to content

Instantly share code, notes, and snippets.

@nfabre
Created December 15, 2010 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nfabre/742028 to your computer and use it in GitHub Desktop.
Save nfabre/742028 to your computer and use it in GitHub Desktop.
VmwareUserCreateTask.php
<?php
require_once "phing/Task.php";
class CreateTask extends Task {
/**
* @var string
*/
private $username;
/**
* @var string
*/
private $password;
/**
* @var string
*/
private $details;
/**
* @return the $username
*/
public function getUsername() {
return $this->username;
}
/**
* @return the $password
*/
public function getPassword() {
return $this->password;
}
/**
* @return the $details
*/
public function getDetails() {
return $this->details;
}
/**
* @param string $username
*/
public function setUsername($username) {
$this->username = $username;
}
/**
* @param string $password
*/
public function setPassword($password) {
$this->password = $password;
}
/**
* @param string $details
*/
public function setDetails($details) {
$this->details = $details;
}
/**
* The main entry point
*
* @throws BuildException
*/
public function main() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment