netconfcentral logo

yuma-app-common.yang



   module yuma-app-common {

      yang-version 1;

      namespace
         "http://netconfcentral.org/ns/yuma-app-common";

      prefix "appcmn";

      import yuma-types {
         prefix "yt";
      }

      organization "Netconf Central";

      contact
         "Andy Bierman <andy at netconfcentral.com>";

      description
         "Common CLI parameters used in all yuma applications.";

      revision "2010-01-25" {
         description
            "Allow revision date in module parm for 0.10 release.";
      }

      revision "2010-01-14" {
         description "Initial version for 0.9.9 release.";
      }


      typedef CliWithDefaultsType {
         type enumeration {
            enum "none" {
               value 0;
            }
            enum "report-all" {
               value 1;
            }
            enum "trim" {
               value 2;
            }
            enum "explicit" {
               value 3;
            }
         }
         description "Add 'none' to standard enumerations";
      }
   }  // module yuma-app-common