Click here to Skip to main content
15,885,918 members
Articles / Programming Languages / C#

NetMX - a JMX port to the .NET world

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
10 Mar 2008LGPL34 min read 39.5K   268   11  
An introduction to NetMX - a lightweight .NET management solution.
using System;
using System.Collections.Generic;
using System.Text;

namespace NetMX.Relation
{
   /// <summary>
   /// This enum describes the various problems which can be encountered when accessing a role.
   /// </summary>
   public enum RoleStatus
   {
      /// <summary>
      /// No probem with that role.
      /// </summary>
      RoleOk = 0,
      /// <summary>
      /// Problem type when trying to set a role value with less ObjectNames than the minimum expected cardinality.
      /// </summary>
      LessThanMinRoleDegree = 1,
      /// <summary>
      /// Problem type when trying to set a role value with more ObjectNames than the maximum expected cardinality.
      /// </summary>
      MoreThanMaxRoleDegree = 2,
      /// <summary>
      /// Problem type when trying to access an unknown role.
      /// </summary>
      NoRoleWithName = 3,
      /// <summary>
      /// Problem type when trying to set a role value including the ObjectName of a MBean not registered 
      /// in the MBean Server.
      /// </summary>
      RefMBeanNotRegistered = 4,
      /// <summary>
      /// Problem type when trying to set a role value including the ObjectName of a MBean not of the class 
      /// expected for that role.
      /// </summary>
      RefMBeanOfIncorrectClass = 5,
      /// <summary>
      /// Problem type when trying to read a non-readable attribute.
      /// </summary>
      RoleNotReadable = 6,
      /// <summary>
      /// Problem type when trying to update a non-writable attribute.
      /// </summary>
      RoleNotWritable = 7
   }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) VSoft
Poland Poland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions