aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AuthorizationRequest.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* moved AuthorizationRequest and AuthorizationResponse to ↵Rob Smart2009-09-111-98/+0
| | | | IAuthorizationService to keep service dependencies together.
* Changed RemoteAuthorizationServiceConnector so that it implements the ↵Rob Smart2009-09-111-1/+35
| | | | | | IAuthorization interface method isAuthorizedForRegion looks up user and region data and delegates the remote authorization check to the AuthorizationServiceConnector This keeps the IAuthorization as clean as possible and moves the dependency of using a UserProfileData object out to the connector from the scene.
* Changed the interface of IAuthorizationService to get less data.Diva Canto2009-09-101-34/+6
|
* added AuthorizationRequest and AuthorizationResponse objects for passing ↵Rob Smart2009-09-101-0/+92
Authorization messages over http. Added handling code for these in the AuthorizationServerConnector and AuthorizationServicesConnector