blob: be61ccf2597aa6e77bfd8428fe757f972241e707 [file] [log] [blame]
#ifndef STMTDDLREVOKECOMPONENTPRIVILEGE_H
#define STMTDDLREVOKECOMPONENTPRIVILEGE_H
// @@@ START COPYRIGHT @@@
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//
// @@@ END COPYRIGHT @@@
/* -*-C++-*-
******************************************************************************
*
* File: StmtDDLRevokeComponentPrivilege.h
* RCS: $Id:
* Description: class for parse node representing the
* "revoke component privilege" statement.
*
*
* Revoked: 06/24/2011
* Language: C++
*
*
*
*
******************************************************************************
*/
#include "ComSmallDefs.h"
#include "StmtDDLNode.h"
class StmtDDLRevokeComponentPrivilege : public StmtDDLNode
{
public:
// constructor
StmtDDLRevokeComponentPrivilege (const ConstStringList * pComponentPrivilegeNameList,
const NAString & componentName,
const NAString & userRoleName,
const NABoolean isGrantOptionForClauseSpecified,
ElemDDLNode * pOptionalGrantedBy, /* optional granted by */
CollHeap * heap = PARSERHEAP());
// virtual destructor
virtual ~StmtDDLRevokeComponentPrivilege();
// virtual safe cast-down function
virtual StmtDDLRevokeComponentPrivilege * castToStmtDDLRevokeComponentPrivilege();
// accessors
inline const ConstStringList & getComponentPrivilegeNameList() const { return *pComponentPrivilegeNameList_; }
inline const NAString & getComponentName() const { return componentName_; }
inline const NAString & getUserRoleName() const { return userRoleName_; }
inline NABoolean isGrantOptionForSpecified() const { return isGrantOptionForSpec_; }
inline ElemDDLGrantee * getGrantedBy() const { return grantedBy_; };
// for tracing
virtual const NAString displayLabel1() const;
virtual const NAString displayLabel2() const;
virtual NATraceList getDetailInfo() const;
virtual const NAString getText();
private:
// not-supported methods
StmtDDLRevokeComponentPrivilege(); // DO NOT USE
StmtDDLRevokeComponentPrivilege(const StmtDDLRevokeComponentPrivilege &); // DO NOT USE
StmtDDLRevokeComponentPrivilege & operator=(const StmtDDLRevokeComponentPrivilege &); // DO NOT USE
// Data members
const ConstStringList * pComponentPrivilegeNameList_;
NAString componentName_;
NAString userRoleName_;
NABoolean isGrantOptionForSpec_;
ElemDDLGrantee * grantedBy_;
};
#endif // STMTDDLREVOKECOMPONENTPRIVILEGE_H