Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Tests/SeguridadObjectMother.cs @ 8:cae27d7eb697
Se agregó ISeguridad para validar autenticaciones de usuarios.
Agenda.Proponer modificado para validar que solo pueden Proponer eventos
los usuarios autenticados.
author | juanjose.montesdeocaarbos |
---|---|
date | Sat, 12 Feb 2011 11:12:18 -0300 |
parents | |
children | c90492faf268 |
comparison
equal
deleted
inserted
replaced
7:deee2ca97f5b | 8:cae27d7eb697 |
---|---|
1 using System; | |
2 using AltNetHispano.Agendas.Domain; | |
3 using System.Security.Principal; | |
4 | |
5 namespace AltNetHispano.Agendas.Tests | |
6 { | |
7 public static class SeguridadObjectMother | |
8 { | |
9 public static GenericPrincipal GetGenericPrincipalAutenticadoSinRoles() | |
10 { | |
11 return new GenericPrincipal(GetGenericIdentityAutenticado(), null); | |
12 } | |
13 | |
14 public static GenericIdentity GetGenericIdentityAutenticado() { | |
15 return new GenericIdentity("neluz"); | |
16 } | |
17 | |
18 | |
19 } | |
20 } |