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

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
ISCSRegExNativePropertyFilter

public interface ISCSNativePropertyFilter
extends java.io.Serializable

Filters native data object properties of a given ISCSObject.


Method Summary
 boolean isValidGetProperty(ISCSObject object, java.lang.String name)
          Determine if the property name is a valid call
 boolean isValidSetProperty(ISCSObject object, java.lang.String name, java.lang.Object value)
          Determine if the property name is a valid call
 

Method Detail

isValidGetProperty

boolean isValidGetProperty(ISCSObject object,
                           java.lang.String name)
Determine if the property name is a valid call

Parameters:
object - the object to check the get call for the property
name - The name of the property
Returns:
true if the property get call is valid on the object

isValidSetProperty

boolean isValidSetProperty(ISCSObject object,
                           java.lang.String name,
                           java.lang.Object value)
Determine if the property name is a valid call

Parameters:
object - the object to check the set call for the property
name - The name of the property
value - The property value to set
Returns:
true if the property set call is valid on the object