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

File: [Pegasus] / pegasus / src / Unsupported / LifecycleIndicationProvider / LifecycleIndicationProvider.h (download)
Revision: 1.2, Thu May 12 10:49:12 2005 UTC (19 years, 1 month ago) by martin
Branch: MAIN
CVS Tags: STABLE, RELEASE_2_5_0-RC1, RELEASE_2_5_0, PEP244_ServerProfile-root, PEP244_ServerProfile-branch, PEP233_EmbeddedInstSupport-root, 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, PEG25_IBM_5_16_05, NPEGASUS_2_5_0_PerformanceDev-String-root, NNPEGASUS_2_5_0_PerformanceDev-String-branch, BUG_4225_PERFORMANCE_VERSION_1_DONE
Branch point for: PEP233_EmbeddedInstSupport-branch
Changes since 1.1: +5 -3 lines
BUG#: 2793
TITLE: Outdated copyright on some files

DESCRIPTION:
Updated to 2005 copyright

//%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: Dave Sudlik (dsudlik@us.ibm.com)
//
// Modified By:
//
//%/////////////////////////////////////////////////////////////////////////////

#ifndef Pegasus_LifecycleIndicationProvider_h
#define Pegasus_LifecycleIndicationProvider_h

#include <Pegasus/Common/Config.h>
#include <Pegasus/Provider/CIMInstanceProvider.h>
#include <Pegasus/Provider/CIMIndicationProvider.h>

class LifecycleIndicationProvider :
	public PEGASUS_NAMESPACE(CIMInstanceProvider),
    public PEGASUS_NAMESPACE(CIMIndicationProvider)
{
public:
	LifecycleIndicationProvider(void);
	virtual ~LifecycleIndicationProvider(void);

	// CIMProvider interface
	virtual void initialize(PEGASUS_NAMESPACE(CIMOMHandle) & cimom);
	virtual void terminate(void);

	// CIMInstanceProvider interface
	virtual void getInstance(
		const PEGASUS_NAMESPACE(OperationContext) & context,
		const PEGASUS_NAMESPACE(CIMObjectPath) & ref,
		const PEGASUS_NAMESPACE(Boolean) includeQualifiers,
		const PEGASUS_NAMESPACE(Boolean) includeClassOrigin,
		const PEGASUS_NAMESPACE(CIMPropertyList) & propertyList,
		PEGASUS_NAMESPACE(InstanceResponseHandler) & handler);

	virtual void enumerateInstances(
		const PEGASUS_NAMESPACE(OperationContext) & context,
		const PEGASUS_NAMESPACE(CIMObjectPath) & ref,
		const PEGASUS_NAMESPACE(Boolean) includeQualifiers,
		const PEGASUS_NAMESPACE(Boolean) includeClassOrigin,
		const PEGASUS_NAMESPACE(CIMPropertyList) & propertyList,
		PEGASUS_NAMESPACE(InstanceResponseHandler) & handler);

	virtual void enumerateInstanceNames(
		const PEGASUS_NAMESPACE(OperationContext) & context,
		const PEGASUS_NAMESPACE(CIMObjectPath) & ref,
		PEGASUS_NAMESPACE(ObjectPathResponseHandler) & handler);

	virtual void modifyInstance(
		const PEGASUS_NAMESPACE(OperationContext) & context,
		const PEGASUS_NAMESPACE(CIMObjectPath) & ref,
		const PEGASUS_NAMESPACE(CIMInstance) & obj,
		const PEGASUS_NAMESPACE(Boolean) includeQualifiers,
		const PEGASUS_NAMESPACE(CIMPropertyList) & propertyList,
		PEGASUS_NAMESPACE(ResponseHandler) & handler);

	virtual void createInstance(
		const PEGASUS_NAMESPACE(OperationContext) & context,
		const PEGASUS_NAMESPACE(CIMObjectPath) & ref,
		const PEGASUS_NAMESPACE(CIMInstance) & obj,
		PEGASUS_NAMESPACE(ObjectPathResponseHandler) & handler);

	virtual void deleteInstance(
		const PEGASUS_NAMESPACE(OperationContext) & context,
		const PEGASUS_NAMESPACE(CIMObjectPath) & ref,
		PEGASUS_NAMESPACE(ResponseHandler) & handler);

    // CIMIndicationProvider interface
    virtual void enableIndications(PEGASUS_NAMESPACE(IndicationResponseHandler) & handler);
    virtual void disableIndications(void);

    virtual void createSubscription(
	const PEGASUS_NAMESPACE(OperationContext) & context,
	const PEGASUS_NAMESPACE(CIMObjectPath) & subscriptionName,
	const PEGASUS_NAMESPACE(Array)<PEGASUS_NAMESPACE(CIMObjectPath)> & classNames,
	const PEGASUS_NAMESPACE(CIMPropertyList) & propertyList,
	const PEGASUS_NAMESPACE(Uint16) repeatNotificationPolicy);

    virtual void modifySubscription(
	const PEGASUS_NAMESPACE(OperationContext) & context,
	const PEGASUS_NAMESPACE(CIMObjectPath) & subscriptionName,
	const PEGASUS_NAMESPACE(Array)<PEGASUS_NAMESPACE(CIMObjectPath)> & classNames,
	const PEGASUS_NAMESPACE(CIMPropertyList) & propertyList,
	const PEGASUS_NAMESPACE(Uint16) repeatNotificationPolicy);

    virtual void deleteSubscription(
	const PEGASUS_NAMESPACE(OperationContext) & context,
	const PEGASUS_NAMESPACE(CIMObjectPath) & subscriptionName,
	const PEGASUS_NAMESPACE(Array)<PEGASUS_NAMESPACE(CIMObjectPath)> & classNames);

protected:
	PEGASUS_NAMESPACE(CIMOMHandle) _cimom;
    PEGASUS_NAMESPACE(IndicationResponseHandler) * _indication_handler;
    PEGASUS_NAMESPACE(Boolean) _lifecycle_indications_enabled;
    PEGASUS_NAMESPACE(Uint32) _numSubscriptions;
    PEGASUS_NAMESPACE(Uint32) _nextUID;
	PEGASUS_NAMESPACE(Array)<PEGASUS_NAMESPACE(CIMInstance)> _instances;

};

#endif

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2