Skip navigation links

Oracle® Fusion Middleware Content Integration Suite (CIS) Java API Reference
11g Release 1 (11.1)

E17350-01


com.stellent.cis.client.api.scs
Interface ISCSDaoObject


public interface ISCSDaoObject

Method Summary
 boolean containsPropertyName(java.lang.String name)
          Determine if the given property is contained within this object
 boolean getBooleanProperty(java.lang.String name, boolean defaultValue)
          Retrieve the boolean value.
 java.util.Date getDateProperty(java.lang.String name)
          Retrieve as a Date; uses the date formatting set on the IDataObject
 float getFloatProperty(java.lang.String name, float defaultValue)
          Retrieve the float value
 int getIntProperty(java.lang.String name, int defaultValue)
          Retrieve the int value
 long getLongProperty(java.lang.String name, long defaultValue)
          Retrieve the long value.
 java.util.Collection getPropertyNames()
          Retrieve a list of the raw properties contained within the backing object.
 java.lang.String getStringProperty(java.lang.String name)
          Translates the name to the appropiate native name and return the String value

 

Method Detail

getPropertyNames

java.util.Collection getPropertyNames()
Retrieve a list of the raw properties contained within the backing object. This may or may not correspond to the #getProperties() list.
Returns:
a collection of the raw property names contained within the backing Data Access Object

containsPropertyName

boolean containsPropertyName(java.lang.String name)
Determine if the given property is contained within this object
Parameters:
name - the property name
Returns:
true if this object contains the property

getDateProperty

java.util.Date getDateProperty(java.lang.String name)
Retrieve as a Date; uses the date formatting set on the IDataObject
Parameters:
name - the property name
Returns:
the Date value, null if cannot create Date object

getIntProperty

int getIntProperty(java.lang.String name,
                   int defaultValue)
Retrieve the int value
Parameters:
name - the property name
defaultValue - the default value to return
Returns:
the int value

getStringProperty

java.lang.String getStringProperty(java.lang.String name)
Translates the name to the appropiate native name and return the String value
Parameters:
name - the property name
Returns:
the property value, null if property name does not exist

getBooleanProperty

boolean getBooleanProperty(java.lang.String name,
                           boolean defaultValue)
Retrieve the boolean value. Handles both the standard "true" or "false" values along with "1" or "0" values.
Parameters:
name - the property name
defaultValue - the default value to return
Returns:
the boolean value

getLongProperty

long getLongProperty(java.lang.String name,
                     long defaultValue)
Retrieve the long value.
Parameters:
name - the property name
defaultValue - the default value to return
Returns:
the long value

getFloatProperty

float getFloatProperty(java.lang.String name,
                       float defaultValue)
Retrieve the float value
Parameters:
name - the property name
defaultValue - the default value to return
Returns:
the float value

Skip navigation links

Oracle® Fusion Middleware Content Integration Suite (CIS) Java API Reference
11g Release 1 (11.1)

E17350-01


Copyright © 1996, 2010, Oracle and/or its affiliates. All rights reserved.