Package us.kbase.workspace
Class GrantModuleOwnershipParams
- java.lang.Object
-
- us.kbase.workspace.GrantModuleOwnershipParams
-
@Generated("com.googlecode.jsonschema2pojo") public class GrantModuleOwnershipParams extends Object
Original spec-file type: GrantModuleOwnershipParams
Parameters for the grant_module_ownership function. Required arguments: modulename mod - the module to modify. username new_owner - the user to add to the module's list of owners. Optional arguments: boolean with_grant_option - true to allow the user to add owners to the module.
-
-
Constructor Summary
Constructors Constructor Description GrantModuleOwnershipParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getAdditionalProperties()
String
getMod()
String
getNewOwner()
Long
getWithGrantOption()
void
setAdditionalProperties(String name, Object value)
void
setMod(String mod)
void
setNewOwner(String newOwner)
void
setWithGrantOption(Long withGrantOption)
String
toString()
GrantModuleOwnershipParams
withMod(String mod)
GrantModuleOwnershipParams
withNewOwner(String newOwner)
GrantModuleOwnershipParams
withWithGrantOption(Long withGrantOption)
-
-
-
Method Detail
-
getMod
public String getMod()
-
setMod
public void setMod(String mod)
-
withMod
public GrantModuleOwnershipParams withMod(String mod)
-
getNewOwner
public String getNewOwner()
-
setNewOwner
public void setNewOwner(String newOwner)
-
withNewOwner
public GrantModuleOwnershipParams withNewOwner(String newOwner)
-
getWithGrantOption
public Long getWithGrantOption()
-
setWithGrantOption
public void setWithGrantOption(Long withGrantOption)
-
withWithGrantOption
public GrantModuleOwnershipParams withWithGrantOption(Long withGrantOption)
-
-