(file) Return to IndicationConstants.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / IndicationService

File: [Pegasus] / pegasus / src / Pegasus / IndicationService / IndicationConstants.h (download)
Revision: 1.7, Fri Jul 22 17:40:39 2005 UTC (18 years, 11 months ago) by carolann.graves
Branch: MAIN
CVS Tags: RELEASE_2_5_0-RC1, RELEASE_2_5_0, PEGASUS_2_5_0_PerformanceDev-string-end, PEGASUS_2_5_0_PerformanceDev-rootlt, PEGASUS_2_5_0_PerformanceDev-root, PEGASUS_2_5_0_PerformanceDev-r2, PEGASUS_2_5_0_PerformanceDev-r1, PEGASUS_2_5_0_PerformanceDev-lit-end, PEGASUS_2_5_0_PerformanceDev-buffer-end, PEGASUS_2_5_0_PerformanceDev-branch, PEGASUS_2_5_0_PerformanceDev-AtomicInt-branch, NPEGASUS_2_5_0_PerformanceDev-String-root, NNPEGASUS_2_5_0_PerformanceDev-String-branch, BUG_4225_PERFORMANCE_VERSION_1_DONE
Changes since 1.6: +35 -0 lines
BUG#: 3971
TITLE: Indication Service should reject creation of instances that include unknown properties

DESCRIPTION: Modified the Indication Service, on a create instance operation, to validate that all properties in the instance are supported properties, and reject the create operation if an unknown, unsupported property is found.

//%2005////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
// Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
// Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
// IBM Corp.; EMC Corporation, The Open Group.
// Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
// IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
// Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
// EMC Corporation; VERITAS Software Corporation; The Open Group.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// 
// THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
// ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
// "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
//==============================================================================
//
// Author: Carol Ann Krug Graves, Hewlett-Packard Company
//             (carolann_graves@hp.com)
//
// Modified By: Yi Zhou, Hewlett-Packard Company (yi.zhou@hp.com)  
//
//%/////////////////////////////////////////////////////////////////////////////

#ifndef Pegasus_IndicationConstants_h
#define Pegasus_IndicationConstants_h

#include <Pegasus/Common/Config.h>
#include <Pegasus/Common/CIMName.h>

PEGASUS_NAMESPACE_BEGIN

/**
    Values for the Subscription State property of the Subscription class,
    as defined in the CIM Events MOF
 */
enum SubscriptionState {_STATE_UNKNOWN = 0, _STATE_OTHER = 1, 
     _STATE_ENABLED = 2, _STATE_ENABLEDDEGRADED = 3, _STATE_DISABLED = 4};

/**
    Values for the Repeat Notification Policy property of the Subscription 
    class, as defined in the CIM Events MOF
 */
enum RepeatNotificationPolicy {_POLICY_UNKNOWN = 0, _POLICY_OTHER = 1,
     _POLICY_NONE = 2, _POLICY_SUPPRESS = 3, _POLICY_DELAY = 4};

/**
    Values for the On Fatal Error Policy property of the Subscription 
    class, as defined in the CIM Events MOF
 */
enum OnFatalErrorPolicy {_ERRORPOLICY_OTHER = 1, _ERRORPOLICY_IGNORE = 2, 
    _ERRORPOLICY_DISABLE = 3, _ERRORPOLICY_REMOVE = 4};

/**
    Values for the Persistence Type property of the Handler class, 
    as defined in the CIM Events MOF
 */
enum PersistenceType {_PERSISTENCE_OTHER = 1, _PERSISTENCE_PERMANENT = 2, 
    _PERSISTENCE_TRANSIENT = 3};

/**
    Values for the Perceived Severity property of the Alert Indication 
    class, as defined in the CIM Events MOF
 */
enum PerceivedSeverity {_SEVERITY_UNKNOWN = 0, _SEVERITY_OTHER = 1, 
     _SEVERITY_INFORMATION = 2, _SEVERITY_WARNING = 3, _SEVERITY_MINOR = 4,
     _SEVERITY_MAJOR = 5, _SEVERITY_CRITICAL = 6, _SEVERITY_FATAL = 7};

/**
    Values for the Probable Cause property of the Alert Indication 
    class, as defined in the CIM Events MOF
    Note: not all possible values have been included
 */
enum ProbableCause {_CAUSE_UNKNOWN = 0, _CAUSE_OTHER = 1};

/**
    Values for the Alert Type property of the Alert Indication class, 
    as defined in the CIM Events MOF
 */
enum AlertType {_TYPE_OTHER = 1, _TYPE_COMMUNICATIONS = 2, _TYPE_QOS = 3,
     _TYPE_PROCESSING = 4, _TYPE_DEVICE = 5, _TYPE_ENVIRONMENTAL = 6,
     _TYPE_MODELCHANGE = 7, _TYPE_SECURITY = 8};

//
//  Class names
//

/**
    The name of the CIMOM Shutdown alert indication class
 */
//
//  ATTN: Update once CimomShutdownAlertIndication has been defined
//
static const CIMName _CLASS_CIMOM_SHUTDOWN_ALERT =
    CIMName ("CIM_AlertIndication");

/**
    The name of the No Provider alert indication class
 */
//
//  ATTN: Update once NoProviderAlertIndication has been defined
//
static const CIMName _CLASS_NO_PROVIDER_ALERT = CIMName ("CIM_AlertIndication");

/**
    The name of the CIMOM shutdown alert indication class
 */
//
//  ATTN: Update once ProviderTerminatedAlertIndication has been defined
//
static const CIMName _CLASS_PROVIDER_TERMINATED_ALERT =
    CIMName ("CIM_AlertIndication");


//
//  Property names
//

/**
    The name of the Filter reference property for indication subscription class
 */
static const CIMName _PROPERTY_FILTER = CIMName ("Filter");

/**
    The name of the Handler reference property for indication subscription class
 */
static const CIMName _PROPERTY_HANDLER = CIMName ("Handler");

/**
    The name of the Subscription State property for indication subscription 
    class
 */
static const CIMName _PROPERTY_STATE = CIMName ("SubscriptionState");

/**
    The name of the Other Subscription State property for Indication 
    Subscription class
 */
static const CIMName _PROPERTY_OTHERSTATE = CIMName ("OtherSubscriptionState");

/**
    The name of the Repeat Notification Policy property for indication
    subscription class
 */
static const CIMName _PROPERTY_REPEATNOTIFICATIONPOLICY =
    CIMName ("RepeatNotificationPolicy");

/**
    The name of the Other Repeat Notification Policy property for
    indication subscription class
 */
static const CIMName _PROPERTY_OTHERREPEATNOTIFICATIONPOLICY =
    CIMName ("OtherRepeatNotificationPolicy");

/**
    The name of the On Fatal Error Policy property for Indication Subscription 
    class
 */
static const CIMName _PROPERTY_ONFATALERRORPOLICY = 
    CIMName ("OnFatalErrorPolicy");

/**
    The name of the Other On Fatal Error Policy property for Indication 
    Subscription class
 */
static const CIMName _PROPERTY_OTHERONFATALERRORPOLICY = 
    CIMName ("OtherOnFatalErrorPolicy");

/**
    The name of the Failure Trigger Time Interval property for Indication 
    Subscription class
 */
static const CIMName _PROPERTY_FAILURETRIGGERTIMEINTERVAL = 
    CIMName ("FailureTriggerTimeInterval");

/**
    The name of the Time Of Last State Change property for Indication 
    Subscription class
 */
static const CIMName _PROPERTY_LASTCHANGE = CIMName ("TimeOfLastStateChange");

/**
    The name of the Subscription Start Time property for Indication 
    Subscription class
 */
static const CIMName _PROPERTY_STARTTIME = CIMName ("SubscriptionStartTime");

/**
    The name of the Subscription Duration property for Indication 
    Subscription class
 */
static const CIMName _PROPERTY_DURATION = CIMName ("SubscriptionDuration");

/**
    The name of the Subscription Time Remaining property for Indication 
    Subscription class
 */
static const CIMName _PROPERTY_TIMEREMAINING = 
    CIMName ("SubscriptionTimeRemaining");

/**
    The name of the Repeat Notification Interval property for indication
    subscription class
 */
static const CIMName _PROPERTY_REPEATNOTIFICATIONINTERVAL = 
    CIMName ("RepeatNotificationInterval");

/**
    The name of the Repeat Notification Gap property for indication
    subscription class
 */
static const CIMName _PROPERTY_REPEATNOTIFICATIONGAP = 
    CIMName ("RepeatNotificationGap");

/**
    The name of the Repeat Notification Count property for indication
    subscription class
 */
static const CIMName _PROPERTY_REPEATNOTIFICATIONCOUNT = 
    CIMName ("RepeatNotificationCount");

/**
    The name of the TextFormatOwningEntity property for Formatted Indication
    Subscription class
*/
static const CIMName _PROPERTY_TEXTFORMATOWNINGENTITY =
    CIMName ("TextFormatOwningEntity");

/**
    The name of the TextFormatID property for Formatted Indication
    Subscription class
*/
static const CIMName _PROPERTY_TEXTFORMATID = CIMName ("TextFormatID");

/**
    The name of the Caption property for Managed Element class
 */
static const CIMName _PROPERTY_CAPTION = CIMName ("Caption");

/**
    The name of the Description property for Managed Element class
 */
static const CIMName _PROPERTY_DESCRIPTION = CIMName ("Description");

/**
    The name of the ElementName property for Managed Element class
 */
static const CIMName _PROPERTY_ELEMENTNAME = CIMName ("ElementName");

/**
    The name of the Query property for indication filter class
 */
static const CIMName _PROPERTY_QUERY = CIMName ("Query");

/**
    The name of the Query Language property for indication filter class
 */
static const CIMName _PROPERTY_QUERYLANGUAGE = CIMName ("QueryLanguage");

/**
    The name of the Source Namespace property for indication filter class
 */
static const CIMName _PROPERTY_SOURCENAMESPACE = CIMName ("SourceNamespace");

/**
    The name of the Name property for indication filter and indications handler     classes
 */
static const CIMName _PROPERTY_NAME = CIMName ("Name");

/**
    The name of the Creation Class Name property for indication filter and 
    indications handler classes
 */
static const CIMName _PROPERTY_CREATIONCLASSNAME = 
    CIMName ("CreationClassName");

/**
    The name of the System Name property for indication filter and indications 
    handler classes
 */
static const CIMName _PROPERTY_SYSTEMNAME = CIMName ("SystemName");

/**
    The name of the System Creation Class Name property for indication filter 
    and indications handler classes
 */
static const CIMName _PROPERTY_SYSTEMCREATIONCLASSNAME = 
    CIMName ("SystemCreationClassName");

/**
    The name of the Persistence Type property for Indication Handler class
 */
static const CIMName _PROPERTY_PERSISTENCETYPE = CIMName ("PersistenceType");

/**
    The name of the Other Persistence Type property for Indication Handler 
    class
 */
static const CIMName _PROPERTY_OTHERPERSISTENCETYPE = 
    CIMName ("OtherPersistenceType");

/**
    The name of the Owner property for Indication Handler class
 */
static const CIMName _PROPERTY_OWNER = CIMName ("Owner");

/**
    The name of the TargetHostFormat property for SNMP Mapper Indication 
    Handler subclass
 */
static const CIMName _PROPERTY_TARGETHOSTFORMAT = CIMName ("TargetHostFormat");

/**
    The name of the OtherTargetHostFormat property for SNMP Mapper Indication 
    Handler subclass
 */
static const CIMName _PROPERTY_OTHERTARGETHOSTFORMAT =
    CIMName ("OtherTargetHostFormat");

/**
    The name of the SNMP Version property for SNMP Mapper Indication Handler 
    subclass
 */
static const CIMName _PROPERTY_SNMPVERSION = CIMName ("SNMPVersion");

/**
    The name of the Port Number property for SNMP Mapper Indication Handler 
    subclass
 */
static const CIMName _PROPERTY_PORTNUMBER = CIMName ("PortNumber");

/**
    The name of the SNMP Security Name property for SNMP Mapper Indication 
    Handler subclass
 */
static const CIMName _PROPERTY_SNMPSECURITYNAME = CIMName ("SNMPSecurityName");

/**
    The name of the SNMP Engine ID property for SNMP Mapper Indication Handler 
    subclass
 */
static const CIMName _PROPERTY_SNMPENGINEID = CIMName ("SNMPEngineID");

/**
    The name of the MailTo property for Email Handler subclass
*/
static const CIMName PEGASUS_PROPERTYNAME_LSTNRDST_MAILTO = 
    CIMName ("MailTo");

/**
    The name of the MailSubject property for Email Handler subclass
*/
static const CIMName PEGASUS_PROPERTYNAME_LSTNRDST_MAILSUBJECT = 
    CIMName ("MailSubject");

/**
    The name of the MailCc  property for Email Handler subclass
 */
static const CIMName PEGASUS_PROPERTYNAME_LSTNRDST_MAILCC = 
    CIMName ("MailCc");

/**
    The name of the Alert Type property for Alert Indication class
 */
static const CIMName _PROPERTY_ALERTTYPE = CIMName ("AlertType");

/**
    The name of the Other Alert Type property for Alert Indication class
 */
static const CIMName _PROPERTY_OTHERALERTTYPE = CIMName ("OtherAlertType");

/**
    The name of the Perceived Severity property for Alert Indication class
 */
static const CIMName _PROPERTY_PERCEIVEDSEVERITY = 
    CIMName ("PerceivedSeverity");

/**
    The name of the Probable Cause property for Alert Indication class
 */
static const CIMName _PROPERTY_PROBABLECAUSE = CIMName ("ProbableCause");

//
//  Qualifier names
//

/**
    The name of the Indication qualifier for classes
 */
static const CIMName _QUALIFIER_INDICATION = CIMName ("INDICATION");


//
//  Other literal values
//

/**
    The WHERE keyword in WQL
 */
static const char   _QUERY_WHERE []         = "WHERE";

/**
    A zero value CIMDateTime interval
 */
static const char _ZERO_INTERVAL_STRING [] = "00000000000000.000000:000";

PEGASUS_NAMESPACE_END

#endif  /* Pegasus_IndicationConstants_h */

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2