Massive tab and trailing space cleanup

This commit is contained in:
Melanie Thielker
2017-01-05 19:07:37 +00:00
parent e88e2945e9
commit b16abc8166
959 changed files with 23646 additions and 23646 deletions

View File

@@ -31,7 +31,7 @@ using OpenSim.Framework;
namespace OpenSim.Services.Interfaces
{
// Generic Authorization service used for authorizing principals in a particular region
public interface IAuthorizationService
{
/// <summary>
@@ -50,7 +50,7 @@ namespace OpenSim.Services.Interfaces
bool IsAuthorizedForRegion(
string userID, string firstName, string lastName, string regionID, out string message);
}
public class AuthorizationRequest
{
private string m_userID;
@@ -69,7 +69,7 @@ namespace OpenSim.Services.Interfaces
m_userID = ID;
m_regionID = RegionID;
}
public AuthorizationRequest(
string ID, string FirstName, string SurName, string Email, string RegionName, string RegionID)
{
@@ -80,44 +80,44 @@ namespace OpenSim.Services.Interfaces
m_regionName = RegionName;
m_regionID = RegionID;
}
public string ID
{
get { return m_userID; }
set { m_userID = value; }
}
public string FirstName
{
get { return m_firstname; }
set { m_firstname = value; }
}
public string SurName
{
get { return m_surname; }
set { m_surname = value; }
}
public string Email
{
get { return m_email; }
set { m_email = value; }
}
public string RegionName
{
get { return m_regionName; }
set { m_regionName = value; }
}
public string RegionID
{
get { return m_regionID; }
set { m_regionID = value; }
}
}
public class AuthorizationResponse
{
private bool m_isAuthorized;
@@ -132,13 +132,13 @@ namespace OpenSim.Services.Interfaces
m_isAuthorized = isAuthorized;
m_message = message;
}
public bool IsAuthorized
{
get { return m_isAuthorized; }
set { m_isAuthorized = value; }
}
public string Message
{
get { return m_message; }