fferpcore.Contextglobal inherited sharing abstract class Context This class represents a context for creating new Sources which in turn can be used to create new Nodes. A fferpcore.Context may represent an SObjectType, currently the only type of context supported. EnumsSourceType
Methods
getClassglobal abstract Type getClass() This method is provided to support serialization to Javascript. This method returns the class type of the associated context. This method must be implemented by a class that implements Context. Return ValueThis service returns a Type object. Sample Code
getInitMementoglobal abstract String getInitMemento() This method is provided to support serialization to Javascript. This method returns a string that describes the SObject to which the context is associated. This method must be implemented by a class that implements Context. Return ValueThis service returns a String object. Sample Code
initialiseglobal abstract void initialise(String memento) This method is provided to support deserialization from Javascript. This method restores the state of the context ready for use. This method must be implemented by a class that implements Context. Input Parameters
Sample Code
getDisplayDescriptionglobal abstract fferpcore.Context.DisplayDescription getDisplayDescription() This method returns information about the source to display. This method must be implemented by a class that implements Context. Return ValueInformation for display of this Source to the user. Sample Code
getPotentialChildrenglobal abstract List<fferpcore.Context.Source> getPotentialChildren() This method returns a complete list of the fields on this particular SObject. Fields on related objects are not included. Each field is described as a fferpcore.Context.Source in the returned list. This method must be implemented by a class that implements Context. Return ValueThe potential children for this context. Sample Code
getSourceglobal abstract fferpcore.Context.Source getSource(String key) This method looks up a source by its key. This method must be implemented by a class that implements Context. Input Parameters
Return ValueLook up a source by its key. Sample Code
fferpcore.Context.DisplayDescriptionglobal inherited sharing class DisplayDescription implements ObjectIO.SerializableObject A class that contains information about contexts and sources to be displayed on the user interface. Properties
Methods
DisplayDescriptionglobal DisplayDescription(String elementType, String nameLabel, String name, String descriptionLabel, String description) Constructs a Context.DisplayDescription. Input Parameters
DisplayDescriptionglobal DisplayDescription(String elementType, String nameLabel, String name, String relationshipName, String descriptionLabel, String description) Constructs a Context.DisplayDescription. Input Parameters
fferpcore.Context.SObjectContextglobal virtual inherited sharing class SObjectContext extends Context implements VirtualDataObject.Accessible An SObjectContext structure. This class/type extends Context. This class implements the following interfaces: Methods
SObjectContextglobal SObjectContext() The default is for internal use only and is not recommended for use. Use the constructor that takes SObjectType as an argument instead. Sample Code
SObjectContextglobal SObjectContext(Schema.SObjectType type) This constructor relates this object with a specific SObject type. The methods from this class will make use of that SObject type. Input Parameters
Sample Code
getClassglobal virtual override Type getClass() This method is provided to support serialization to Javascript. This method returns the class type of the associated context. Return ValueThis service returns a Type object. Sample Code
getInitMementoglobal virtual override String getInitMemento() This method is provided to support serialization to Javascript. This method returns a string that describes the SObject with which the context is associated. Return ValueThis service returns a String object. Sample Code
initialiseglobal virtual override void initialise(String memento) This method is provided to support deserialization from Javascript. This method creates a new context ready for use. Input Parameters
Sample Code
getDisplayDescriptionglobal virtual override fferpcore.Context.DisplayDescription getDisplayDescription() This method returns information about the source to display. Return ValueThis service returns a DisplayDescription object. Sample Code
getPotentialChildrenglobal virtual override List<fferpcore.Context.Source> getPotentialChildren() This method returns a complete list of the fields on this particular SObject that are in the form of a Context.Source. Return ValueThis service returns a list of Source objects. Sample Code
getSourceglobal virtual override fferpcore.Context.Source getSource(String key) This method looks up a source by using its key if that key is related to the current context. Input Parameters
Return ValueThis service returns a Source object. Sample Code
fferpcore.Context.Sourceglobal inherited sharing abstract class Source This class represents the source of information for each of the nodes. This is an abstract class and all abstract methods must be implemented for use. Methods
getKeyglobal virtual String getKey() This method returns the key by which the originating fferpcore.Context knows this Source. If the source is standalone like StaticSource or PassthroughSource this method returns null. If this source can be specified from the context like SObjectSource then the key associated with this source is returned. Return ValueThe key by which the originating Context knows this Source, or null for the Root Source or a Source that stands alone such as Static or Passthrough Sources. Sample Code
getDisplayDescriptionglobal abstract fferpcore.Context.DisplayDescription getDisplayDescription() This method returns information about the source to display. This method must be implemented by a class that implements Context.Source. Return ValueInformation for display of this Source to the user. Sample Code
setInputContextglobal virtual void setInputContext(fferpcore.Context parent) This method passes the parent context down to any potential child sources. The default behavior of this method is to do nothing. This is required for some sources. An example Source which does this is Context.PassthroughSource. Input Parameters
Sample Code
prepareglobal virtual fferpcore.DataSource prepare(fferpcore.DataSource dataSource) This method prepares the input fferpcore.DataSource so that it knows which data is required to build this Source. If the fferpcore.DataSource contains complex data, the fferpcore.DataSource for its child data is returned. Otherwise null is returned. Input Parameters
Return ValueThe datasource for child data if this DataSource returns complex data. Otherwise null. Sample Code
prepareglobal virtual fferpcore.DataSource prepare(fferpcore.DataSource dataSource, fferpcore.Intent intent) Prepare the given fferpcore.DataSource so this Source can obtain and update the necessary data. Input Parameters
Return ValueThe DataSource for the lookup or child data. Otherwise null. canGetScalarDataglobal virtual Boolean canGetScalarData() This method returns true if this source is capable of providing Scalar data, e.g. 'Foo'. By default, this method returns false. An example Source which overrides this method is Context.StaticSource. Return ValueTrue if this source is capable of providing Scalar data. Sample Code
getScalarDataTypeglobal virtual fferpcore.DataType getScalarDataType() This method returns the data type name for the scalar data associated with this source. By default, this method returns null. An example Source which overrides this method is Context.StaticSource. Return ValueThe data type name for the scalar data. Sample Code
getDataglobal virtual Object getData(fferpcore.DataSource.Row row) This method returns the scalar data relating to the DataSource.Row. Return ValueScalar data relating to the DataSource.Row. Only applicable if canGetScalarData is true. Sample Code
getDataglobal virtual Object getData(fferpcore.VirtualDataObject.Record record) This method returns the scalar data relating to the VirtualDataObject.Record. Return ValueScalar data relating to the VirtualDataObject.Record. Only applicable if canGetScalarData is true. getDataOptionalglobal virtual fferpcore.OptionalValue getDataOptional(fferpcore.DataSource.Row row) Input Parameters
Return ValueNull if the row has no value, otherwise an OptionalValue containing the data. canGetComplexDataglobal virtual Boolean canGetComplexData() This method returns whether this source is capable of providing complex data for child nodes. By default, this method returns false. Return ValueTrue if this source is capable of providing complex data for child nodes. Sample Code
canGetListDataglobal virtual Boolean canGetListData() This method returns whether a source is capable of providing data for list nodes. By default, this method returns false. Return ValueTrue if this source is capable of providing data for list nodes. getOutputContextglobal virtual fferpcore.Context getOutputContext() This method returns the current context of this source. For example, an SObjectSource will return the current SObject that is associated with the source. In order for this to be returned, the class itself must be able to support complex data. By default, this method returns null. Return ValueContext describing the complex data. Only applicable if canGetComplexData is true. Sample Code
getChildRowglobal virtual fferpcore.DataSource.Row getChildRow(fferpcore.DataSource.Row inputRow) This method should be implemented to return a wrapper for the field to which this source refers. Input Parameters
Return ValueRow for children to build from. Only applicable if canGetComplexData is true. Sample Code
getChildRowglobal virtual fferpcore.VirtualDataObject.Record getChildRow(fferpcore.VirtualDataObject.Record record) This method should be implemented to return a wrapper for the field to which this source refers. Input Parameters
Return ValueRecord for children to build from. Only applicable if canGetComplexData is true. getChildRowOptionalglobal virtual fferpcore.OptionalValue getChildRowOptional(fferpcore.DataSource.Row inputRow) Input Parameters
Return ValueNull if the row has no child row, otherwise an OptionalValue containing the data. getListRowsglobal virtual Iterator<fferpcore.DataSource.Row> getListRows(fferpcore.DataSource.Row inputRow) This method should be implemented to return an iterator of rows for the child records that this source references. Input Parameters
Return ValueIterator of child rows to build from. Only applicable if canGetListData is true. getListRowsglobal virtual fferpcore.VirtualDataObject.RecordList getListRows(fferpcore.VirtualDataObject.Record record) This method should be implemented to return a record list for the child records that this source references. Input Parameters
Return ValueRecord list to build from. Only applicable if canGetListData is true. getTypeglobal abstract fferpcore.Context.SourceType getType() This method should be used as an indication of whether this is one of the Foundations static sources, or whether it came from a Context. This method must be implemented by a class that implements Context.Source. Return ValueIndication of whether this is one of the Foundations static sources, or whether it came from a Context. Sample Code
hasAccessglobal virtual Boolean hasAccess() Checks whether the current user has access to this data. For example, if this Source represents an SObjectField then the user must have read access to that field. The default implementation of this method returns true. Return ValueTrue if the current user would normally have access to this data. putDataglobal virtual void putData(fferpcore.DataSource.Row row, Object data) Set the data at this Source on the given DataSource.Row. Input Parameters
addErrorglobal virtual void addError(fferpcore.DataSource.Row row, String errorMessage) Add an error at this Source on the given DataSource.Row. Input Parameters
getAsAccessibleglobal virtual fferpcore.VirtualDataObject.Accessible getAsAccessible() Return ValueThe accessibility of the Source. fferpcore.Context.SObjectSourceglobal inherited sharing class SObjectSource extends Source The source of the data is a field on an SObject. fferpcore.Message descriptions will normally be created using this type. This class extends fferpcore.Context.Source Methods
SObjectSourceglobal SObjectSource(Schema.SObjectField field) This constructor a field which can be used to associate this source with a particular field on an SObject. Input Parameters
Sample Code
getKeyglobal override String getKey() This method returns the key by which the originating fferpcore.Context knows this Source. This method is used by the Publication Description user interface. Return ValueThis service returns a String object. Sample Code
getDisplayDescriptionglobal override fferpcore.Context.DisplayDescription getDisplayDescription() This method returns information about the source to display. This method is used by the user interface to display information about the source. Return ValueThis service returns a DisplayDescription object. Sample Code
canGetScalarDataglobal override Boolean canGetScalarData() This method returns true since an SObjectField can always return scalar data. Objects specified as a lookup appear as IDs. This is a method which has been written for use on the Publication user interface. Return ValueThis service returns a Boolean object. Sample Code
getScalarDataTypeglobal override fferpcore.DataType getScalarDataType() This method returns the data type name for the scalar data associated with this source. Return ValueThis service returns a DataType object. Sample Code
canGetComplexDataglobal override Boolean canGetComplexData() This method returns whether or not this source is capable of providing complex data for child nodes. Return ValueThis service returns a Boolean object. Sample Code
getOutputContextglobal override fferpcore.Context getOutputContext() This method returns the context that this source is currently in. An SObjectSource will return the current SObject that is associated with the source. Return ValueThis service returns a Context object. Sample Code
getChildRowglobal override fferpcore.DataSource.Row getChildRow(fferpcore.DataSource.Row inputRow) This method returns a wrapper for the field to which this source refers. For example, if this source is in reference to the name field of an SObject, the information from that field will be returned. Input Parameters
Return ValueThis service returns a DataSource.Row object. Sample Code
getTypeglobal override fferpcore.Context.SourceType getType() This method is used as an indication that this source is an SObjectSource without having to perform type checks on the object. Return ValueThis service returns a SourceType object. Sample Code
prepareglobal override fferpcore.DataSource prepare(fferpcore.DataSource dataSource) This method prepares the input fferpcore.DataSource so that it knows which fields are required to build the message. It returns the fferpcore.DataSource if the source is a reference to another SObject. Otherwise, it returns null. Input Parameters
Return ValueThis service returns a DataSource object. Sample Code
getDataglobal override Object getData(fferpcore.DataSource.Row row) This method returns the data relating to the DataSource.Row. It reads the information about the field specified in the initial constructor of an SObjectSource and returns it. If the field cannot be found, it returns null. Input Parameters
Return ValueThis service returns an Object object. Sample Code
fferpcore.Context.StaticSourceglobal inherited sharing class StaticSource extends Source Source is a static value that is defined by the publication. fferpcore.PublicationDescriber must provide a description as it cannot be automatically generated. This class extends fferpcore.Context.Source Methods
StaticSourceglobal StaticSource(String description) This constructor creates a StaticSource with no data. It can be used to put an empty node in the message. Input Parameters
Sample Code
StaticSourceglobal StaticSource(Object data, String description) This constructor creates a static source with the specified data and description. It can be used to provide constant values in messages. Input Parameters
Sample Code
getKeyglobal override String getKey() On a StaticSource, this method always returns null. On other types of source, this method returns the key by which the originating fferpcore.Context knows this Source. Return ValueThis service returns a String object. Sample Code
getDisplayDescriptionglobal override fferpcore.Context.DisplayDescription getDisplayDescription() This method returns information about the source to display. This method is used by the user interface to display information about the source. Return ValueThis service returns a DisplayDescription object. Sample Code
canGetScalarDataglobal override Boolean canGetScalarData() Returns true to indicate this node can hold scalar type data. Return ValueThe default implementation of this method returns true. Sample Code
getScalarDataTypeglobal override fferpcore.DataType getScalarDataType() This method returns the data type name for the scalar data associated with this source. As a StaticSource can hold data of any type (the constructor takes an Object parameter), the default return value is 'new DataType(Schema.DisplayType.anytype, null, null)'. Return ValueThis service returns a DataType object. Sample Code
getTypeglobal override fferpcore.Context.SourceType getType() This method is used as an indication that this source is a StaticSource without having to perform type checks on the object. Return ValueThis service returns a SourceType object. Sample Code
getDataglobal Object getData() This method returns the data this StaticSource was constucted with. Return ValueThis service returns an Object object. Sample Code
getDescriptionglobal String getDescription() Returns the description specified when this StaticSource was constructed. Return ValueThis service returns a String object. Sample Code
getDataglobal override Object getData(fferpcore.DataSource.Row row) This method returns the data this StaticSource was constucted with. The fferpcore.DataSource.Row parameter has no effect. Input Parameters
Return ValueThis service returns an Object object. Sample Code
fferpcore.Context.PassthroughSourceglobal inherited sharing class PassthroughSource extends Source A PassthroughSource structure. A Passthrough source retains and passes the context received to any nodes beneath it. Passthrough sources can only be put onto MapNodes. This class/type extends Context.Source. This class extends fferpcore.Context.Source Methods
PassthroughSourceglobal PassthroughSource() The default constructor for a PassthroughSource. Sample Code
PassthroughSourceglobal PassthroughSource(String description) The default constructor for a PassthroughSource. Input Parameters
Sample Code
getKeyglobal override String getKey() This method returns null as a passthrough source is not known by the current context. This method will return null no matter what. Return ValueThe key by which the originating Context knows this Source, or null for the Root Source or a Source that stands alone such as Static or Passthrough Sources. getDisplayDescriptionglobal override fferpcore.Context.DisplayDescription getDisplayDescription() This method returns information about the source to display. This method is used by the user interface to display information about the source. Return ValueInformation for display of this Source to the user. Sample Code
prepareglobal override fferpcore.DataSource prepare(fferpcore.DataSource parentSource) This method returns the same datasource that was input. This is because a Passthrough Source retains the same context that was given to it so the fferpcore.DataSource does not have to do any work. Input Parameters
Return ValueThis service returns a DataSource object. Sample Code
setInputContextglobal override void setInputContext(fferpcore.Context ctx) This method passes the parent context down to any potential child sources. Input Parameters
Sample Code
canGetComplexDataglobal override Boolean canGetComplexData() This method returns true since a Passthrough Source is capable of providing complex data for any child nodes. Unlike StaticSources which cannot provide complex data as they simply represent a fixed value. Return ValueTrue if this source is capable of providing complex data for child nodes. getOutputContextglobal override fferpcore.Context getOutputContext() Returns the output context associated with this node. For a PassthroughSource, the output context is always the same as the input context. Return ValueContext describing the complex data. Only applicable if canGetComplexData is true. Sample Code
getChildRowglobal override fferpcore.DataSource.Row getChildRow(fferpcore.DataSource.Row inputRow) Returns the fferpcore.DataSource.Row for children to build from. This is only applicable if canGetComplexData is true. The default behavior is to return the input parameter without modification. Input Parameters
Return ValueRow for children to build from. Only applicable if canGetComplexData is true. Sample Code
getTypeglobal override fferpcore.Context.SourceType getType() This method is used as an indication that this source is a PassthroughSource without having to perform type checks on the object. Return ValueThis service returns a SourceType object. Sample Code
fferpcore.Context.CorrelationSourceglobal inherited sharing class CorrelationSource extends Source The source of the data is a field on an SObject. Unless empty, when it uses an additional fallback field. This class extends fferpcore.Context.Source Methods
CorrelationSourceglobal CorrelationSource(SObjectField field, SObjectField fallbackField) Construct the source using the primary and fallback fields from an SObject. Input Parameters
getDisplayDescriptionglobal override fferpcore.Context.DisplayDescription getDisplayDescription() This method returns information about the source to display. This method is used by the user interface to display information about the source. Return ValueThis service returns a DisplayDescription object. canGetScalarDataglobal override Boolean canGetScalarData() Returns true to indicate this node can hold scalar type data. Return ValueThe default implementation of this method returns true. getScalarDataTypeglobal override fferpcore.DataType getScalarDataType() This method returns the data type name for the scalar data associated with this source. Return ValueThis service returns a DataType object. getTypeglobal override fferpcore.Context.SourceType getType() This method is used as an indication that this source is a CorrelationSource without having to perform type checks on the object. Return ValueThis service returns a SourceType object. prepareglobal override fferpcore.DataSource prepare(fferpcore.DataSource dataSource) This method prepares the input fferpcore.DataSource so that it knows which fields are required to build the message. Input Parameters
Return ValueThis service returns a DataSource object. getDataglobal override Object getData(fferpcore.DataSource.Row row) This method returns the data relating to the DataSource.Row. It reads the information about the field specified in the initial constructor. If the field is empty, it instead reads the fallback field. If the field cannot be found, it returns null. Input Parameters
Return ValueThis service returns an Object object. fferpcore.Context.CompositeSourceglobal inherited sharing class CompositeSource extends Source Contains the source of data resulting from several sources chained together. This can be used to obtain data from related records using multiple lookup fields. This class extends fferpcore.Context.Source Methods
CompositeSourceglobal CompositeSource(List<Schema.SObjectField> fields) Constructs a CompositeSource. Input Parameters
CompositeSourceglobal CompositeSource(List<fferpcore.Context.Source> sources) Constructs a CompositeSource. Input Parameters
getKeyglobal override String getKey() This method returns the key by which the originating fferpcore.Context identifies this Source. This method is used by the Publication Description user interface. Return ValueThis service returns a String object. getDisplayDescriptionglobal override fferpcore.Context.DisplayDescription getDisplayDescription() This method returns information about the source to display. This method is used by the user interface to display information about the source. Return ValueThis service returns a DisplayDescription object. prepareglobal override fferpcore.DataSource prepare(fferpcore.DataSource dataSource) This method prepares the input fferpcore.DataSource so that it knows which fields are required to build the message. Input Parameters
Return ValueThis service returns a DataSource object. canGetScalarDataglobal override Boolean canGetScalarData() This method returns whether this source can return scalar data. Return ValueThis service returns a Boolean object. getScalarDataTypeglobal override fferpcore.DataType getScalarDataType() This method returns the data type name for the scalar data associated with this source. Return ValueThis service returns a DataType object. getDataglobal override Object getData(fferpcore.DataSource.Row row) This method returns the data relating to the DataSource.Row. Input Parameters
Return ValueThis service returns an Object object. canGetComplexDataglobal override Boolean canGetComplexData() This method returns whether this source is capable of providing complex data for child nodes. Return ValueThis service returns a Boolean object. getOutputContextglobal override fferpcore.Context getOutputContext() This method returns the context that this source is currently in. A CompositeSource returns the SObject that is associated with the last source. Return ValueThis service returns a Context object. getChildRowglobal override fferpcore.DataSource.Row getChildRow(fferpcore.DataSource.Row inputRow) This method returns a wrapper for the field to which this source refers. Input Parameters
Return ValueThis service returns a DataSource.Row object. getTypeglobal override fferpcore.Context.SourceType getType() This method is used as an indication that this source is a CompositeSource without having to perform type checks on the object. Return ValueThis service returns a SourceType object. fferpcore.Context.ListSourceglobal inherited sharing class ListSource extends Source The source of the data is a list of child records on an SObject. This class extends fferpcore.Context.Source Methods
ListSourceglobal ListSource(SObjectType childType, SObjectField childLookupField) Construct a ListSource. Input Parameters
ListSourceglobal ListSource(Schema.ChildRelationship childRelationship) Construct a ListSource. Input Parameters
withFilterglobal fferpcore.Context.ListSource withFilter(fferpcore.PublicationMatcher filter) Provides a fferpcore.PublicationMatcher that is used to filter the child records added to the message. Input Parameters
Return ValueThe original ListSource instance. This enables further methods to be invoked. withParentTypeglobal fferpcore.Context.ListSource withParentType(SObjectType parentType) Provides a parent object type. This is necessary for relationships with ambiguous lookup fields. For example, the ParentId field on the Attachment object. Input Parameters
Return ValueThe original ListSource instance. This enables further methods to be invoked. getKeyglobal override String getKey() This method returns the key by which the originating fferpcore.Context knows this Source. This method is used by the Publication Description user interface. Return ValueThis service returns a String object. getDisplayDescriptionglobal override fferpcore.Context.DisplayDescription getDisplayDescription() This method returns information about the source to display. This method is used by the user interface to display information about the source. Return ValueThis service returns a DisplayDescription object. canGetListDataglobal override Boolean canGetListData() This method returns whether or not a source is capable of providing data for list nodes. Return ValueThis service returns a Boolean object. getOutputContextglobal override fferpcore.Context getOutputContext() This method returns the context that this source is currently in. A ListSource will return the child SObject that is associated with the source. Return ValueThis service returns a Context object. getListRowsglobal override Iterator<fferpcore.DataSource.Row> getListRows(fferpcore.DataSource.Row inputRow) This method should be implemented to return an iterator of rows for the child records that this source is in reference to. Input Parameters
Return ValueIterator of child rows to build from. getTypeglobal override fferpcore.Context.SourceType getType() This method is used as an indication that this source is a ListSource without having to perform type checks on the object. Return ValueThis service returns a SourceType object. prepareglobal override fferpcore.DataSource prepare(fferpcore.DataSource dataSource) This method prepares the input fferpcore.DataSource so that it knows which fields are required to build the message. Input Parameters
Return ValueThis service returns a DataSource object. fferpcore.Context.MapSourceglobal inherited sharing class MapSource extends Source implements ObjectIO.ActivatableObject MapSource represents a scalar value that is accessed from a fferpcore.DataSource using a string key. When constructing a message, a value with the key of this source can be given to a custom DataSource. Methods
MapSourceglobal MapSource(String key, String description, fferpcore.DataType dataType) This constructor creates a static source with the specified data and description. It can be used to provide constant values in messages. Input Parameters
getKeyglobal override String getKey() This method returns the key by which the originating fferpcore.Context knows this Source. This method is used by the Publication Description user interface. Return ValueThis service returns a String object. getDescriptionglobal String getDescription() This method returns the description of this Source. This method is used by the Publication Description user interface. Return ValueThis service returns a String object. getDisplayDescriptionglobal override fferpcore.Context.DisplayDescription getDisplayDescription() This method returns information about the source to display. This method is used by the user interface to display information about the source. Return ValueThis service returns a DisplayDescription object. canGetScalarDataglobal override Boolean canGetScalarData() This method returns true since the data represented is scalar. Return ValueThis service returns a Boolean object. getScalarDataTypeglobal override fferpcore.DataType getScalarDataType() This method returns the data type name for the scalar data associated with this source. Return ValueThis service returns a DataType object. getTypeglobal override fferpcore.Context.SourceType getType() This method is used as an indication that this source is a MapSource without having to perform type checks on the object. Return ValueThis service returns a SourceType object. getDataglobal override Object getData(fferpcore.DataSource.Row row) This method returns the data relating to the DataSource.Row. Information about the field specified in the initial constructor of an SObjectSource is read and returned. If the field cannot be found, the method returns null. Input Parameters
Return ValueThis service returns an Object object. fferpcore.Context.FallbackSourceglobal inherited sharing class FallbackSource extends Source A dynamic source of data that uses the first source in the list that has a value other than null. This class extends fferpcore.Context.Source MethodsFallbackSourceglobal FallbackSource(List<fferpcore.Context.Source> sources) Construct a FallbackSource with the given sources. Input Parameters
|