org.opencrx.kernel.activity1.jpa3
Class ActivityQueryFilterProperty

java.lang.Object
  extended by org.w3c.jpa3.AbstractObject
      extended by org.opencrx.kernel.activity1.jpa3.ActivityFilterProperty
          extended by org.opencrx.kernel.activity1.jpa3.ActivityQueryFilterProperty
All Implemented Interfaces:
Serializable, ActivityFilterProperty, ActivityQueryFilterProperty, AbstractFilterProperty, QueryFilterProperty, SecureObject, BasicObject, ContextCapable, Creatable, ExtentCapable, Modifiable

public class ActivityQueryFilterProperty
extends ActivityFilterProperty
implements ActivityQueryFilterProperty

Class ActivityQueryFilterProperty

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class org.w3c.jpa3.AbstractObject
AbstractObject.AbstractStateAccessor, AbstractObject.EmbeddedList<E>, AbstractObject.EmbeddedSet<E>, AbstractObject.ObjectState, AbstractObject.SlicedList<E,S>, AbstractObject.SlicedMap<E,S>, AbstractObject.SlicedSet<E,S>
 
Nested classes/interfaces inherited from interface org.opencrx.kernel.activity1.cci2.ActivityFilterProperty
ActivityFilterProperty.Identity
 
Field Summary
 
Fields inherited from class org.opencrx.kernel.activity1.jpa3.ActivityFilterProperty
createdAt, identity, modifiedAt
 
Constructor Summary
ActivityQueryFilterProperty()
          Constructor
 
Method Summary
 List<Boolean> getBooleanParam()
          Retrieves a list containing all the elements for the attribute booleanParam.
 String getClause()
          Retrieves the value for the attribute clause.
 List<XMLGregorianCalendar> getDateParam()
          Retrieves a list containing all the elements for the attribute dateParam.
 List<Date> getDateTimeParam()
          Retrieves a list containing all the elements for the attribute dateTimeParam.
 List<BigDecimal> getDecimalParam()
          Retrieves a list containing all the elements for the attribute decimalParam.
 List<Integer> getIntegerParam()
          Retrieves a list containing all the elements for the attribute integerParam.
 List<String> getStringParam()
          Retrieves a list containing all the elements for the attribute stringParam.
 void setBooleanParam(boolean... booleanParam)
          Clears booleanParam and adds the given value(s).
 void setClause(String clause)
          Sets a new value for the attribute clause.
 void setDateParam(XMLGregorianCalendar... dateParam)
          Clears dateParam and adds the given value(s).
 void setDateTimeParam(Date... dateTimeParam)
          Clears dateTimeParam and adds the given value(s).
 void setDecimalParam(BigDecimal... decimalParam)
          Clears decimalParam and adds the given value(s).
 void setIntegerParam(int... integerParam)
          Clears integerParam and adds the given value(s).
 void setStringParam(String... stringParam)
          Clears stringParam and adds the given value(s).
 
Methods inherited from class org.opencrx.kernel.activity1.jpa3.ActivityFilterProperty
addOwningGroup, checkPermissions, getAccessLevelBrowse, getAccessLevelDelete, getAccessLevelUpdate, getCreatedAt, getCreatedBy, getDescription, getIdentity, getModifiedAt, getModifiedBy, getName, getOpenmdxjdoIdentity, getOwner, getOwningGroup_Id, getOwningGroup, getOwningUser_Id, getOwningUser, isActive, openmdxjdoGetSlices, removeAllOwningGroup, removeOwningGroup, replaceOwningGroup, setAccessLevel, setAccessLevelBrowse, setAccessLevelDelete, setAccessLevelUpdate, setActive, setActivityFilter_Id, setActivityFilter, setDescription, setName, setOpenmdxjdoIdentity, setOwner, setOwningUser_Id, setOwningUser, setOwningUser
 
Methods inherited from class org.w3c.jpa3.AbstractObject
openmdxjdoMakeDirty, openmdxjdoSetArray, openmdxjdoSetCollection, openmdxjdoToArray, openmdxjdoToArray
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.opencrx.kernel.base.cci2.AbstractFilterProperty
getDescription, getName, isActive, setActive, setDescription, setName
 
Methods inherited from interface org.opencrx.kernel.base.cci2.SecureObject
addOwningGroup, checkPermissions, getAccessLevelBrowse, getAccessLevelDelete, getAccessLevelUpdate, getOwner, getOwningGroup, getOwningUser, removeAllOwningGroup, removeOwningGroup, replaceOwningGroup, setAccessLevel, setAccessLevelBrowse, setAccessLevelDelete, setAccessLevelUpdate, setOwner, setOwningUser, setOwningUser
 
Methods inherited from interface org.openmdx.base.cci2.Creatable
getCreatedAt, getCreatedBy
 
Methods inherited from interface org.openmdx.base.cci2.ExtentCapable
getIdentity
 
Methods inherited from interface org.openmdx.base.cci2.Modifiable
getModifiedAt, getModifiedBy
 

Constructor Detail

ActivityQueryFilterProperty

public ActivityQueryFilterProperty()
Constructor

Method Detail

getDateTimeParam

public List<Date> getDateTimeParam()
Retrieves a list containing all the elements for the attribute dateTimeParam.

Specified by:
getDateTimeParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setDateTimeParam

public void setDateTimeParam(Date... dateTimeParam)
Clears dateTimeParam and adds the given value(s).

This method is equivalent to

   list.clear();
   for(java.util.Date e : attributeName){
     list.add(e);
   }
 

Specified by:
setDateTimeParam in interface QueryFilterProperty
Parameters:
dateTimeParam - value(s) to be added to dateTimeParam

getDateParam

public List<XMLGregorianCalendar> getDateParam()
Retrieves a list containing all the elements for the attribute dateParam.

Specified by:
getDateParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setDateParam

public void setDateParam(XMLGregorianCalendar... dateParam)
Clears dateParam and adds the given value(s).

This method is equivalent to

   list.clear();
   for(javax.xml.datatype.XMLGregorianCalendar e : attributeName){
     list.add(e);
   }
 

Specified by:
setDateParam in interface QueryFilterProperty
Parameters:
dateParam - value(s) to be added to dateParam

getBooleanParam

public List<Boolean> getBooleanParam()
Retrieves a list containing all the elements for the attribute booleanParam.

Specified by:
getBooleanParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setBooleanParam

public void setBooleanParam(boolean... booleanParam)
Clears booleanParam and adds the given value(s).

This method is equivalent to

   list.clear();
   for(boolean e : attributeName){
     list.add(e);
   }
 

Specified by:
setBooleanParam in interface QueryFilterProperty
Parameters:
booleanParam - value(s) to be added to booleanParam

getIntegerParam

public List<Integer> getIntegerParam()
Retrieves a list containing all the elements for the attribute integerParam.

Specified by:
getIntegerParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setIntegerParam

public void setIntegerParam(int... integerParam)
Clears integerParam and adds the given value(s).

This method is equivalent to

   list.clear();
   for(int e : attributeName){
     list.add(e);
   }
 

Specified by:
setIntegerParam in interface QueryFilterProperty
Parameters:
integerParam - value(s) to be added to integerParam

getDecimalParam

public List<BigDecimal> getDecimalParam()
Retrieves a list containing all the elements for the attribute decimalParam.

Specified by:
getDecimalParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setDecimalParam

public void setDecimalParam(BigDecimal... decimalParam)
Clears decimalParam and adds the given value(s).

This method is equivalent to

   list.clear();
   for(java.math.BigDecimal e : attributeName){
     list.add(e);
   }
 

Specified by:
setDecimalParam in interface QueryFilterProperty
Parameters:
decimalParam - value(s) to be added to decimalParam

getStringParam

public List<String> getStringParam()
Retrieves a list containing all the elements for the attribute stringParam.

Specified by:
getStringParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setStringParam

public void setStringParam(String... stringParam)
Clears stringParam and adds the given value(s).

This method is equivalent to

   list.clear();
   for(java.lang.String e : attributeName){
     list.add(e);
   }
 

Specified by:
setStringParam in interface QueryFilterProperty
Parameters:
stringParam - value(s) to be added to stringParam

getClause

public String getClause()
Retrieves the value for the attribute clause.

Specified by:
getClause in interface QueryFilterProperty
Returns:
The non-null value for attribute clause.

setClause

public void setClause(String clause)
Sets a new value for the attribute clause.

Specified by:
setClause in interface QueryFilterProperty
Parameters:
clause - The non-null new value for attribute clause.


This software is published under the BSD license. Copyright © 2003-2012, CRIXP AG, Switzerland, All rights reserved. Use is subject to license terms.