Context Base

APIs implemented by all the context APIs

// Set the context to Global access
public void setGlobal();
	
// Set the context to System access
public void setSystem();
	
// Set the context tied to an organization
public void setOrganization(long orgId);
	
// Set the context back to normal (Domain) mode
public void resetMode();
	
// Set the context to another domain
public boolean switchDomain(String domainKey);
	
// Set the context back to original Domain
public void resetDomain();