filteredandscopedindication.java

来自「CmisJavaApi」· Java 代码 · 共 137 行

JAVA
137
字号
/* * The contents of this file are subject to the Dyade Public License,  * as defined by the file DYADE_PUBLIC_LICENSE.TXT * * You may not use this file except in compliance with the License. You may * obtain a copy of the License on the Dyade web site (www.dyade.fr). * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for * the specific terms governing rights and limitations under the License. * * The Original Code is CmisJava API, including the java package  * fr.dyade.cmis, released September 5, 2000. * * The Initial Developer of the Original Code is Dyade. The Original Code and * portions created by Dyade are Copyright Bull and Copyright INRIA.  * All Rights Reserved. *//*      Copyright 1996-2000 by Institut National de Recherche en Informatique  *                             et en Automatique (INRIA) *          All rights reserved.  See COPYRIGHT in top-level directory. * *      Authors: Laurent Andrey, Eric Dillon, Olivier Festor *///---------------------------------------------------------------------------////  CVS Info//---------------------------------------------------------------------------//////  $Id: FilteredAndScopedIndication.java,v 1.2 2000/09/05 13:04:41 festor Exp $//  $Source: /local/resedas/CVS-Repository/CmisJavaApi/src/fr/dyade/cmis/api/operation/FilteredAndScopedIndication.java,v $//---------------------------------------------------------------------------////  Todo//---------------------------------------------------------------------------////package fr.dyade.cmis.api.operation;import fr.dyade.cmis.api.types.*;/** An abstract parent class for any CMIS indication featuring Filtering and Scoping facilities.  *  * @version cvs $Id: FilteredAndScopedIndication.java,v 1.2 2000/09/05 13:04:41 festor Exp $  */public abstract class FilteredAndScopedIndication extends CMISIndication {      /**	* Set the Filter parameter.	* @param pFilter the Fileter object	*/      public void setFilter( Filter pFilter ) {	 fFilter=pFilter;      }      /**	* Get the Filter parameter.	* @return the Filter object	*/      public Filter getFilter(){	 return fFilter;      }      /**	* Set the Scope parameter.	* @param pScope the Scope object	*/      public void setScope( Scope pScope ) {	 fScope=pScope;      }      /**	* Get the Scope parameter.	* @return the Scope object	*/      public Scope getScope() {	 return fScope;      }      /**	* Set the Base object parameter.	* @param pCalss the ObjectClass object for the base object identifier	*/      public void  setBaseObjectClass ( ObjectClass pClass ) {	 fBaseObjectClass=pClass;      }      /**	* Get the Base object class parameter.	* @return the ObjectClass object for the base object class identifier	*/      public ObjectClass getBaseObjectClass(){	 return fBaseObjectClass;      }      /**	* Set the Base object instance parameter.	* @param pName the ObjectInstance object for the base object instance identifier	*/      public void setBaseObjectInstance( ObjectInstance pOI ) {	 fBaseObjectInstance=pOI;      }      /**	* Get the Base object instance parameter.	* @return the ObjectInstance object for the base object instance identifier	*/      public ObjectInstance getBaseObjectInstance(){	 return fBaseObjectInstance;      }      /**	* Set the Access control parameter.	* @param pAC the Accesscontrol object	*/      public void setAccessControl(AccessControl pAC){	 fAccessControl=pAC;      }      /**	* Set the Synchronization parameter.	* @param pSynchro the Synchronization object	*/      public void setSynchronization(Synchronization pSynchro){	 fSynchronization=pSynchro;      }      /**	* Get the Access control parameter.	* @return the Accesscontrol object	*/      public AccessControl getAccessControl() {	 return fAccessControl;      }      /**	* Set the Synchronization parameter.	* @return the Synchronization object	*/      public Synchronization getSynchronization(){	 return fSynchronization;      }      private ObjectClass fBaseObjectClass;      private ObjectInstance fBaseObjectInstance;      private Scope fScope;      private Filter fFilter;      private AccessControl fAccessControl;      private Synchronization fSynchronization;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?