2003-10-31 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Security / XrML.cs
1 //
2 // XrML.cs - eXtensible rights Markup Language (http://www.xrml.org/)
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 using System;
11
12 namespace Microsoft.Web.Services.Security {
13
14         public class XrML {
15
16                 public class AttributeNames {
17
18                         public const string RefType = "RefType";
19
20                         public AttributeNames () {}
21                 }
22         
23                 public class ElementNames {
24
25                         public const string License = "license";
26
27                         public ElementNames () {}
28                 }
29
30                 public const string NamespaceURI = "urn:oasis:names:tc:WSS:1.0:bindings:WSS-XrML-binding";
31                 public const string Prefix = "xrml";
32
33                 public XrML () {}
34         }
35 }