Wednesday, February 29, 2012

ADF 11G : How To Get The Date After N Days ?

    static final long MILI_SECONDS_PER_DAY = 86400000;

    public static Date dateAfterNDays( Date startDate, int nDays)

    {

       if (startDate == null)

           startDate = new Date(Date.getCurrentDate());  // assume today

       Timestamp ts = startDate.timestampValue();

       long nextDatesSecs = ts.getTime() + (MILI_SECONDS_PER_DAY * nDays);

       return new Date( new Timestamp(nextDatesSecs));

    }

ADF 11G : How to Calculate the Difference Between Two Date ?

    oracle.jbo.domain.Date

    private Number differenceBetweenTwoDate( Date startDate, Date endDate)
    {
       if (startDate == null)
           startDate = new Date(Date.getCurrentDate()); // assume today

       if (endDate == null)
            endDate = new Date(Date.getCurrentDate());  // asume today again

       Timestamp tsStart = startDate.timestampValue();
       Timestamp tsEnd = endDate.timestampValue();

       long ndays = (tsEnd.getTime() - tsStart.getTime()) / MILI_SECONDS_PER_DAY;

       return new Number(ndays);
    }

Java : How To Convert String Into InputStream ?

    public static InputStream stringToInputStream(String str) throws IOException {
           // String str = "This is a String ~ GoGoGo";
            
                    // convert String into InputStream
                    InputStream is = new ByteArrayInputStream(str.getBytes());
            
                    // read it with BufferedReader
                    BufferedReader br = new BufferedReader(new InputStreamReader(is));
            
                    String line;
                    while ((line = br.readLine()) != null) {
                            System.out.println(line);
                    }
            
                    br.close();
                    return is;
        }

Monday, February 27, 2012

ADF Migration: 10g to Trinidad

How to Migrate an ADF 10g Application to 11g(Trinidad) ?
-----------------------------------------------------------------

When we attempt a migration from ADF 10g application to ADF 11g, It will get migrated to Trinidad Component. It handles automatically by the IDE(Jdeveloper 11g). You need to select the checkBox Migrate to Trinidad during opening an 10g application into Jdeveloper 11g.


Below is some useful tips::--

Imports
 import org.apache.myfaces.trinidad.component.core.data.CoreTable;
 import org.apache.myfaces.trinidad.component.core.input.CoreInputText;
 import org.apache.myfaces.trinidad.component.core.nav.CoreCommandButton;
 import org.apache.myfaces.trinidad.component.html.HtmlRowLayout;
 import org.apache.myfaces.trinidad.component.core.output.CoreMessages;
 import org.apache.myfaces.trinidad.component.core.output.CoreSpacer;
 import org.apache.myfaces.trinidad.component.core.output.CoreOutputText;
 import org.apache.myfaces.trinidad.component.html.HtmlBody;
 import org.apache.myfaces.trinidad.component.html.HtmlCellFormat;
 import org.apache.myfaces.trinidad.component.html.HtmlHead;
 import org.apache.myfaces.trinidad.component.html.HtmlHtml;
 import org.apache.myfaces.trinidad.component.core.output.CoreSpacer;
 import org.apache.myfaces.trinidad.component.core.nav.CoreCommandLink;
 import org.apache.myfaces.trinidad.component.core.layout.CorePanelBox;
 import org.apache.myfaces.trinidad.component.core.layout.CorePanelPage;
 import org.apache.myfaces.trinidad.component.core.layout.CorePanelList;
 import org.apache.myfaces.trinidad.component.core.input.CoreSelectOneChoice;
 import org.apache.myfaces.trinidad.component.core.input.CoreInputDate;
 import org.apache.myfaces.trinidad.component.core.input.CoreInputHidden;
 import org.apache.myfaces.trinidad.component.core.input.CoreSelectBooleanCheckbox;
 import org.apache.myfaces.trinidad.component.html.HtmlTableLayout;
 import org.apache.myfaces.trinidad.component.core.input.CoreSelectManyListbox;
 import org.apache.myfaces.trinidad.component.core.input.CoreSelectOneRadio;
 import org.apache.myfaces.trinidad.component.core.input.CoreResetButton;
 import org.apache.myfaces.trinidad.context.RequestContext;

 import org.apache.myfaces.trinidad.logging.TrinidadLogger;
 import javax.el.ValueExpression;
 import org.apache.myfaces.trinidad.component.core.data.CoreColumn;
 import org.apache.myfaces.trinidad.component.core.input.CoreSelectItem;
 import org.apache.myfaces.trinidad.component.core.layout.CorePanelFormLayout;
 import org.apache.myfaces.trinidad.component.core.layout.CoreShowDetail;
 import org.apache.myfaces.trinidad.component.UIXSwitcher;
 import org.apache.myfaces.trinidad.model.RowKeySet;
 import org.apache.myfaces.trinidad.component.core.data.CoreTable;




List of the Component Classes, which has been Renamed/Changed in Trinidad
Name in 10G    CoreObjectSpacer
Name in Trinidad    CoreSpacer


Name in 10G    CorePanelGroup
Name in Trinidad    CorePanelGroupLayout


Name in 10G    CoreShowOnePanel
Name in Trinidad    CorePanelAccordion


Name in 10G    CoreSelectInputDate
Name in Trinidad    CoreInputDate


List of the Component Classes, which is not available in Trinidad

  CoreTableSelectOne
  CoreTableSelectMany
  CoreMenuList
  CoreCommandMenuItem

  RichCommandMenuItem
  CoreMenuBar
  RichMenuBar
  Region (Region Migration)

 NOTE : An adfinternal package, which has been changed to trinidadinternal; no migration will be available for any code using these APIs, as they were were not supported for use by clients.

Depricated API with Replacement

Deprecated  javax.faces.el APIs in 10G
Replaced by javax.el APIs in Trinidad
ValueBinding
Value Expression
Method Binding
Method Expression
Variable Resolver
Property Resolver
Vb.getValue(Context)
Vb.getValue(Context.getELContext)

Deprecated  APIs in 10G
Replaced APIs in Trinidad
AdfFacesContext
RequestContext
AdfFacesFilter
TrinidadFilter
ADFLogger
TrinidadLogger
ADFLogRecord
TrinidadLogRecord

NOTE : 'processScope'  has been  renamed 'pageFlowScope' in Trinidad.



Manual Changes Needed:
NOTE : (Refer from SRDemoMigration Guide)
Ø  Replace adfFacesContext References with Trinidad requestContext
 In this release, the migration wizard automates substituting references to adfFacesContext by the Trinidad equivalent requestContext in pages and page definitions, however if you have referenced adfFacesContext in Java code, you need to make this subsitution manually. So we can use JDeveloper's search/replace in files functionality to accomplish this manually.
Ø  Add Whitespace After Colon in EL Expressions Using Ternary Operation to Avoid JSF 1.2 EL Runtime Error
The JSF 1.2 Expression Language (EL) evaluator currently throws an ELException at runtime trying to parse the : (colon) symbol in ternary expressions if it is immediately followed by an alphabetic character. The easiest way to workaround this issue is to search for such occurrences in your pages and add whitespace around the : in the ternary expression.
Example,welcome.jspx.
value="#{row.AssignedDate eq null?res['srsearch.highlightUnassigned']:row.AssignedDate}"
...
The colon needs to be separated from the identifier row by whitespace to avoid the error. So change the EL expression to have whitespace after the : like this:
value="#{row.AssignedDate eq null?res['srsearch.highlightUnassigned']: row.AssignedDate}"
...


To quickly navigate to any file by name, choose Navigate | Go to File... or press Ctrl+ Alt+ Minus, then begin to type the name of the file to subset the list and choose the one you want. (No need to remember what directory it is in!)





Ø  Add Immediate="true" To Buttons Bound to Delete Actions If Not Present
As a best practice, a JSF command component like a "Cancel" or "Rollback" button should have its immediate property set to true to avoid posting any user data in the current form before carrying out the operation. The SRDemo's SRMain.jspx page inadvertently did not correctly follow this best practice for the (Cancel) button in the "Add Note" panel in the page.
Due to an ADF Faces 10.1.3 issue [Bug 5918302] now fixed in 11g, this best-practice setting of the immediate property went unnoticed. Here's why. In JDeveloper 10.1.3 with ADF Faces, when client-side mandatory attribute enforcement is not in use, a form submitted

with empty values for server-side mandatory fields is not correctly validated if the user has not changed the data of any field in the form. In 11g, the validation is correctly triggered now so we need to correct the situation by adding the immediate="true" property to this (Cancel) button.

Ø  Adjust Reference to Table SelectionState
The ADF Faces table has a property named selectionState whose nested property keySet returns a Set of keys for the selected rows. The Apache Trinidad table has a property named selectedRowKeys that similarly returns a Set of keys for the selected rows.


Table handling code level in Bean
Set keySet = getHistoryTable().getSelectionState().getKeySet();-->  (ADF 10G)
to this:
Set keySet = getHistoryTable().getSelectedRowKeys(); --> (Trinidad)
-----------------------------------------------------


Tool Tip Handling code level
getConfidential().setTip(null); --> (ADF 10G)
to this:
getConfidential().setShortDesc(null); --> (Trinidad)
 
Migration Tips
·         The PPR implementation of Trinidad is different from the one in ADF Faces. However, when you mix ADF Faces components with Trinidad components, avoid Trinidad components that have integrated PPR behaviour. Only use passive Trinidad components.



     Useful Link:
·        Apache Trinidad Home Page: http://myfaces.apache.org/trinidad/index.html
·        Trinidad Demo:  http://example.irian.at/trinidad-demo/faces/index.jspx
·        SRDemo migration(10.1.3 to Trinidad): http://www.oracle.com/technetwork/developer-tools/jdev/migration-082101.html
·        Trinidad Apache TagDoc:  http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/trh_tableLayout.html

    How to migrate an adf application?
    Trinidad component
    How to migrate adf faces to trinidad?
    How to migrate adf 10g to trinidad? 


ERROR_TRINIDAD

ERRORS : TRINIDAD
-----------------------------

ADF_TRINID-00001: Could not find FacesBean class {0}
Cause: FacesBean class name could not be found.
Action: Log a bug against the application. Check that the jsf jars are all installed
correctly.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00002: Could not create instance of FacesBean {0}
Cause: IllegalArgumentException
Action: Log a bug against the application. Check that the jsf jars are all installed
correctly.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00003: No faces-bean.properties files located
Cause: Could not find the faces-bean.properties file in any jar
Action: Log a bug against the application. Check that the jsf jars are all installed
correctly.
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-00004: Could not load {0}
Cause: Cannot find the url
Action: Log a bug against the application. Check that the jsf jars are all installed
correctly. Check that the url is written correctly.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00005: Error on trying to create new component instance for {0}
Cause: Error in ChangeManager
2-2 Oracle Fusion Middleware Error Messages Reference
Action: Log a bug against the application. Check that the Trinidad and jsf jars are
all installed correctly.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00006: Conversion class: {0} not of type {1}
Cause: Error in ChangeManager
Action: Change the type so that it can be converted or log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00007: Unable to instantiate converterClass: {0}
Cause: Error in ChangeManager
Action: Make sure the converter class can be instantiated or log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00008: Saved child count does not match current count (was {0}, now
{1})
Cause: Error in TreeState implementation
Action: Fix the TreeState implementation or log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00009: State for some facets of {0} is missing, and will not be restored.
Cause: Error in TreeState implementation
Action: Fix the TreeState facet state implementation or log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00010: Saved facet state includes state for facet "{0}" which is not
present in restored tree; discarding this state.
Cause: Error in TreeState implementation
Action: Fix the TreeState facet state implementation or log a bug against the
application.
Level: 1
Type: WARNING
ADF_TRINID-00001 to ADF_TRINID-30336 2-3
Impact: Logging
ADF_TRINID-00011: Saved state includes state for a transient component: {0}
Cause: Error in TreeState implementation
Action: Fix the TreeState state implementation or log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00012: Could not find rowKey for clientRowKey:{0}
Cause: Error in UIXCollection implementation when setting/getting
clientRowKey
Action: Fix UIXCollection implementation or log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00013: There was no initial stamp state for currencyKey:{0} and
currencyKeyForInitialStampState:{1} and stampId:{2}
Cause: Error in UIXCollection
Action: Fix UIXCollection implementation or log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00014: Could not find renderer for {0} rendererType = {1}
Cause: Error in renderer registration on render kit
Action: Log a bug against the application and make sure the Trinidad jars are
installed and check the faces-config.xml files.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00015: Could not load type properties
Cause: Error getting faces-bean-type.properties from any jar
Action: Log a bug against the application and make sure the Trinidad and jsf jars
are installed.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00016: Could not get resource key {0} from skin {1}
Cause: ResourceBundle key does not exist in any resource bundle in framework
or skin.
2-4 Oracle Fusion Middleware Error Messages Reference
Action: Log a bug against the application or make sure the resource key exists in
skin by checking the skin resource files (see trinidad-skins.xml).
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00017: Trying to attach RenderingContext to a thread that already had
one.
Cause: Thread already had a RenderingContext attached to it.
Action: Log a bug against the application. Call release()
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00018: Cannot find RequestContext; two-digit-year-start will be
defaulted
Cause: RequestContext was not set up yet.
Action: Log a bug against the application. Make sure all jars are installed and
filters are specified correctly in web.xml
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00019: Cannot find RequestContext; TimeZone will default.
Cause: RequestContext was not set up yet.
Action: Log a bug against the application. Make sure all jars are installed and
filters are specified correctly in web.xml
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00020: Failed to get hold of DecimalFormat for type: {0} decimal
separator, number grouping separator, currency code will be defaulted based on
locale {1}
Cause: DecimalFormat not set up
Action: Log a bug against the application. Make sure all jars are installed and
filters are specified correctly in web.xml
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00021: RequestContext is null: decimal separator, number grouping
separator, currency code will be defaulted based on locale
Cause: RequestContext was not set up yet.
Action: Log a bug against the application. Make sure all jars are installed and
filters are specified correctly in web.xml
ADF_TRINID-00001 to ADF_TRINID-30336 2-5
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00022: RequestContext is null, unable to get currency code
Cause: RequestContext was not set up yet.
Action: Log a bug against the application. Make sure all jars are installed and
filters are specified correctly in web.xml
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00023: Number format was not instance of DecimalFormat: ignoring
currency information while formatting.
Cause: Number format was not set up correctly.
Action: Set up the Number format correctly or log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00024: CollectionModel was set to null
Cause: setCollectionModel was passed a null parameter
Action: Check the code that calls setCollectionModel or log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00025: Invalid rowkey:{0} type:{1}
Cause: ClassCastException rowkey should be an Integer
Action: Fix the rowkey to be an Integer or log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00026: The viewId property in ViewIdPropertyMenuModel is null.
The viewId property is needed to find the focus rowKey.
Cause: viewIdProperty that is used to retrieve the viewId from a node in the tree
is null.
Action: Set the viewIdProperty to be non-null or log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00027: EL Expression {0} is invalid or returned a bad value
2-6 Oracle Fusion Middleware Error Messages Reference
Cause: ELExpression evaluation caused an exception
Action: Fix the ELExpression to be valid or log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00028: Exception opening URI {0}
Cause: Exception in openStream
Action: Check the URI. Log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00029: Exception creating menu model {0}
Cause: Exception while creating menu model
Action: Fix the menu model code or log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00030: Resource "{0}" at path "{1}" not found
Cause: Error calling getResource
Action: Make sure the resource can be found or log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00031: Unable to retrieve image data for icon of type {0}. Try using
ContextImageIcon.
Cause: Icon openStream method called, and it is not supported.
Action: Try using a ContextImageIcon in your code instead or log a bug against
the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00032: Error parsing:{0}
Cause: Error parsing a service from a file in /META-INF/services
Action: Check the services to make sure the urls are valid or log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00001 to ADF_TRINID-30336 2-7
ADF_TRINID-00033: error loading resource:{0}
Cause: IOException while loading services
Action: Check your server or log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00034: Resource name "{0}" begins with a slash, which is not portable.
Cause: resource name begins with a slash and it shouldn't.
Action: Fix the resource name to not begin with a slash or log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00035: unable to load bundle {0}
Cause: MissingResourceException; bundle could not be loaded.
Action: Fix the resource bundle so that it can be loaded or log a bug against the
application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00036: Unable to load faces bundle {0}
Cause: MissingResourceException
Action: Make sure the jsf jars are installed correctly. Make sure you can find the
faces bundle. Log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00037: Unable to find ResourceLoader for ResourceServlet at servlet
path:{0} Cause: Could not find resource:{1}
Cause: Resource missing
Action: Make sure the resource can be found. Make sure the jars are installed
correctly. Log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00038: Trinidad ResourceServlet is running in debug mode. Do not
use in a production environment. See the {0} parameter in /WEB-INF/web.xml
Cause: Application is running in debug mode.
Action: Change the parameter in web.xml so that it is not running in debug mode.
Level: 1
2-8 Oracle Fusion Middleware Error Messages Reference
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-00039: Could not find context class loader.
Cause: Thread.getContextClassLoader returned null.
Action: Fix the code so the ContextClassLoader can be loaded. Check the web
server.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00040: Could not convert:{0} into int[]
Cause: value is not a list of integers
Action: Change the value so that it can be converted to an array of integers. Log a
bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00041: Could not parse value {0} into a Date using pattern
"yyyy-MM-dd"; ignoring.
Cause: date property's value is not in the correct format
Action: Nothing if the pattern it uses is ok. Otherwise log a bug against the
application.
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-00042: no parent <tr:componentRef> found!
Cause: No parent componentRef component exists
Action: Log a bug against the application. Add a componentRef component on
the page.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00043: Event {0} was delivered to a showDetail already in that
disclosure state.
Cause: Renderer delivered an unnecessary event or it set disclosed on its own
instead of waiting for the disclosure event.
Action: Check the showDetail renderer code or log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00044: Name "{0}" had already been registered.
ADF_TRINID-00001 to ADF_TRINID-30336 2-9
Cause: FacesBean addKey with name already added.
Action: Make sure you do not have duplicate names. Log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00045: Index "{0}" had already been registered.
Cause: FacesBean addkey with index already added
Action: Make sure you do not have duplicate indexes. Log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00046: Type is already locked
Cause: The FacesBean type object is locked, preventing further changes. .
IllegalStateException, name already in keymap
Action: Fix code that has locked the FacesBean.Type. Log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00047: Property "{0}" cannot be bound.
Cause: IllegalArgumentException, trying to set valuebinding on a key that does
not support binding
Action: Do not valuebind the property or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00048: Key {0} cannot be used for lists
Cause: IllegalArgumentException, PropertyKey is not a list and it should be to
call this method.
Action: Fix the code so that the PropertyKey can be used for lists or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00049: Key {0} is a list key
Cause: IllegalArgumentException, propertykey passed is a list and it shouldn't be.
Action: Fix code so that the propertyKey is not a list key or log a bug against the
application.
2-10 Oracle Fusion Middleware Error Messages Reference
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00050: Default value {0} is not assignable to type {1}
Cause: IllegalStateException; PropertyKey constructor error
Action: Fix the PropertyKey constructor to pass in a non-null defaultValue
parameter or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00051: Capability mask {0} not understood
Cause: IllegalStateException; PropertyKey constructor error
Action: Check the PropertyKey API and use a valid Capability mask or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00052: Invalid index
Cause: IllegalStateException; PropertyKey constructor error
Action: Check the PropertyKey API and provide a valid index to the PropertyKey
constructor or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00053: Attempt to add a duplicate ID {0}
Cause: ChangeManager, already a child with ID
Action: Remove duplicate ids or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00054: No node specified
Cause: ChangeManager, componentNode passed to the method is null.
Action: Specify a node or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00055: component required
Cause: ChangeManager, constructor error
ADF_TRINID-00001 to ADF_TRINID-30336 2-11
Action: Check the ChangeManager API and code or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00056: DocumentFragment required
Cause: ChangeManager, IllegalArgumentException
Action: Check the ChangeManager API and code or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00057: Cannot construct an AttributeChange with null attribute
name.
Cause: ChangeManager, IllegalArgumentException, constructor error
Action: Check the ChangeManager API and code or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00058: Cannot add a Change with either of facesContext,
uiComponent or Change being null.
Cause: ChangeManager, IllegalArgumentException, constructor error
Action: Check the ChangeManager API and code or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00059: Cannot construct an ChangeComponentProxy with null
uiComponent.
Cause: ChangeManager, IllegalArgumentException, constructor error
Action: Use a non null UIComponent parameter in the ChangeComponentProxy.
Check the API. Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00060: target class name must be provided
Cause: ChangeManager, IllegalArgumentException
Action: Fix call to ChangeManager.registerDocumentFactory to provide a
targetClassName or log a bug against the application.
2-12 Oracle Fusion Middleware Error Messages Reference
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00061: converter class name must be provided
Cause: ChangeManager, IllegalArgumentException
Action: Fix call to ChangeManager.registerDocumentFactory to provide a
converterClassName or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00062: Parent cannot be null
Cause: ChangeManager, null parameter
Action: Set the parent to be non-null or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00063: Cannot construct a RemoveChildChange with null childId.
Cause: ChangeManager, IllegalArgumentException, constructor error
Action: Fix the constructor to provide a non-null childId or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00064: Cannot construct a RemoveFacetChange with null facetName.
Cause: ChangeManager, IllegalArgumentException, constructor error
Action: Fix the constructor to use a non-null facetName or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00065: Cannot construct a ReorderChange with null childIds.
Cause: ChangeManager, IllegalArgumentException, constructor error
Action: Fix the constructor to use a non-null childId or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00066: Cannot construct an AddFacetChange with either of
facetName or facetComponent being null.
ADF_TRINID-00001 to ADF_TRINID-30336 2-13
Cause: ChangeManager, IllegalArgumentException, constructor error
Action: Fix the constructor to use a non-null facetName or facetComponent or log
a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00067: Facet name must be specified
Cause: ChangeManager, IllegalArgumentException, constructor error
Action: Fix the constructor to use a non-null facetName or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00068: index:{0} size:{1}
Cause: ChildArrayList was not built properly
Action: Fix the code that builds the ChildArrayList or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00069: Bad PhaseId:{0}
Cause: The phaseId passed to the method is invalid
Action: Make sure the phaseId is valid when calling this method or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00070: Illegal id: {0}
Cause: The component has a bad id. First character might be a separator character
or empty
Action: Fix the illegal component id in your page or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00071: wrappedEvent
Cause: Illegal use of the WrapperEvent constructor. The wrappedEvent
parameter was null.
Action: Fix the code that creates a WrappedEvent object or log a bug against the
application.
2-14 Oracle Fusion Middleware Error Messages Reference
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00072: RenderingContext was already released or had never been
attached.
Cause: An attempt was made to release an unattached RenderingContext
Action: Fix the code that tried to release the RenderingContext or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00073: Trying to release a different RenderingContext than the
current context.
Cause: An attempt was made to release a RenderingContext that is not the current
RenderingContext.
Action: Fix the code that tried to release the RenderingContext or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00074: This is not an error. This trace is for debugging.
Cause: This is not an error. This trace is for debugging the RequestContext class.
Action: No action needed since this is a debugging log message only. You can set
the LOG to greater than FINEST to turn off the message.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00075: Trying to release a different RequestContext than the current
context.
Cause: An attempt was made to release a RequestContext that is not the current
RequestContext.
Action: Make sure the release method was called by the same code that created
the RequestContext or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00076: Factory already available for this class loader.
Cause: IllegalStateException, an attempt was made to set in a map a
RequestContextFactory that already exists for this classloader
Action: Do not call setFactory(RequestContextFactory factory) with a
RequestContextFactory that already exists for the class loader or log a bug against
the application.
ADF_TRINID-00001 to ADF_TRINID-30336 2-15
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00077: Supplied FacesContext or UIComponent is null
Cause: NullPointerException, the FacesContext or UIComponent passed to the
method was null.
Action: Fix the code that caused this NullPointerException or log a bug against
the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00078: FacesContext or UIComponent is null
Cause: NullPointerException, the FacesContext or UIComponent passed to the
method was null.
Action: Fix the code that caused this NullPointerException or log a bug against
the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00079: Patterns should contain atleast one value and cannot be null
Cause: IllegalArgumentException in ColorConverter; pattern is null or empty
Action: Fix the pattern in the ColorConverter or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00080: Cannot format given Object as a Color
Cause: Object passed to method was not an instance of Color or Number
Action: Fix the Object that you pass into the method or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00081: Invalid attribute name {0}
Cause: IllegalArgumentException, attribute name not found in FacesBean.Type
Action: Check your value bindings to make sure the attribute name exists or log a
bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00082: value:"{0}" is not of type java.util.Date, it is {1}
2-16 Oracle Fusion Middleware Error Messages Reference
Cause: ClassCastException, value is not a String or Date.
Action: Fix the value binding to point to a String or a Date or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00083: Invalid date style ''{0}''
Cause: IllegalStateException, the date style was not default, short, medium, long,
full, or shortish.
Action: Fix the DateTimeConverter's dateStyle attribute or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00084: Invalid time style ''{0}''
Cause: IllegalStateException, the time style was not default, short, medium long
or full.
Action: Fix the DateTimeConverter's timeStyle attribute or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00085: Invalid type ''{0}''
Cause: IllegalStateException, the type was not "date", "time", or "both"
Action: Fix the DateTimeConverter's type attribute or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00086: Illegal message id unexpected value {0}
Cause: IllegalArgumentException in DateTimeConverter.
Action: Fix the message pattern or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00087: Illegal value for attribute "type" unexpected value {0}
Cause: IllegalArgumentException
Action: Fix the DateTimeConverter's type attribute or log a bug against the
application.
Level: 2
ADF_TRINID-00001 to ADF_TRINID-30336 2-17
Type: ERROR
Impact: Logging
ADF_TRINID-00088: FacesContext or Component is null
Cause: NullPointerException, the FacesContext or UIComponent passed to the
method was null.
Action: Fix the code that caused the NullPointerException or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00089: Either "pattern" or "type" must be specified
Cause: IllegalArgumentException, pattern and type parameters were both null.
Action: Set the NumberConverter's type or pattern attribute or log a bug against
the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00090: "value" is not of type java.lang.Number
Cause: IllegalArgumentException in NumberConverter
Action: Fix NumberConverter's value to be a Number or String or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00091: {0} is not a valid type
Cause: IllegalArgumentException in NumberConverter. type should be number,
currency or percent
Action: Fix NumberConverter's type attribute or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00092: Illegal pattern character ''{0}''
Cause: IllegalArgumentEcxeption in RGBColorFormat when checking the rgb
pattern character
Action: Fix the rgb pattern in RGBColorFormat or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00093: Logger required
2-18 Oracle Fusion Middleware Error Messages Reference
Cause: TrinidadLogger constructor error
Action: Fix the code that creates the TrinidadLogger or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00094: Logger Name required
Cause: Attempt was made to create a TrinidadLogger without a name which is a
required parameter to this method.
Action: Check the call to TrinidadLogger.createTrinidadLogger or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00095: Class required
Cause: Attempt was made to create a TrinidadLogger without a Class which is a
required parameter to this method.
Action: Fix the call to TrinidadLogger.createTrinidadLogger or log a bug against
the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00096: Package required
Cause: Attempt was made to create a TrinidadLogger without a package which is
a required parameter to this method.
Action: Fix the call to TrinidadLogger.createTrinidadLogger or log a bug against
the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00097: rowData is null
Cause: IllegalStateException in TreeModel or MenuModel. rowData is null.
Action: Fix rowData or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00098: Cannot exit the root container
Cause: IllegalStateException in TreeModel or MenuModel.
Action: Fix code in the TreeModel or MenuModel regarding the path size or log a
bug against the application.
ADF_TRINID-00001 to ADF_TRINID-30336 2-19
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00099: Illegal value being set - value should be between -1 and
maximum
Cause: The constructor was called with the wrong value
Action: Fix the code that creates a DefaultBoundedRangeModel or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00100: Could not convert:{0} into a MenuModel
Cause: IllegalArgumentException, the value could not be converted to a
MenuModel.
Action: Fix the MenuModel's value so it can be converted to a MenuModel or log
a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00101: rowKey
Cause: IllegalStateException, PathHelper's rowKey has not been set and is null.
Action: Set PathHelper's rowKey or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00102: No Path element to pop
Cause: IllegalStateException in PathHelper
Action: Fix the path or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00103: Could not clone
Cause: CloneNotSupported, an attempt was made to call clone() on an object that
is not clonable.
Action: Make sure the object is clonable before calling the method or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00104: No element to remove
2-20 Oracle Fusion Middleware Error Messages Reference
Cause: IllegalStateException, an attempt was made to remove a null element.
Action: Fix the rowKeySet code or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00105: todo
Cause: This is only a todo. No cause.
Action: This is only a todo. No action.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00106: property is null
Cause: SortCriterion constructor error, NullPointerException
Action: Fix the NullPointerException or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00107: No MenuContentHandler was registered.
Cause: IllegalStateException, no MenuContentHandler was registered on
services.
Action: Fix the code to register a MenuContentHandler or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00108: No RenderingContext
Cause: IllegalStateException, RenderingContext is null and it shouldn't be.
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00109: Resource path regular expression "{0}" does not have leading
slash
Cause: IllegalArgumentException, there was no leading slash and there should
be.
Action: Fix the resource path by adding a leading slash or log a bug against the
application.
Level: 2
Type: ERROR
ADF_TRINID-00001 to ADF_TRINID-30336 2-21
Impact: Logging
ADF_TRINID-00110: Factory already available for this class loader.
Cause: IllegalStateException, SkinFactory already available for the class loader.
Action: Fix call to SkinFactory.setFactory or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00111: byte[] cannot be null
Cause: NullPointerException, argument is null
Action: Fix the NullPointerException by setting byte[] to a non-null value or log a
bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00112: Actual Length:{0} offset:"{1} length:{2}
Cause: IndexOutOfBoundsException, byte[], offset, length arguments passed to
the method are incorrect.
Action: Fix the IndexOutOfBoundsException or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00113: FastMessageFormat only supports numeric arguments
Cause: IllegalArgumentException, in FastMessageFormat while formatting.
Action: Fix the arguments passed into the method to be numeric or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00114: End of pattern not found
Cause: IllegalArgumentException, in FastMessageFormat while formatting.
Action: Fix the FastMessageFormat pattern or log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00115: FastMessageFormat: empty argument - {} - found
Cause: IllegalArgumentException, in FastMessageFormat while formatting.
Action: Fix the call to the method to have a non-empty argument or log a bug
against the application.
Level: 2
2-22 Oracle Fusion Middleware Error Messages Reference
Type: ERROR
Impact: Logging
ADF_TRINID-00116: bundle not found
Cause: No bundle was found.
Action: Fix the resource bundle (for example, the
ApplicationFacesMessageBundle) so that it can be found by the code or log a bug
against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00117: resourceId is null
Cause: NullPointerException. A null value was passed to a method.
Action: Fix the NullPointerException by passing in a non-null resourceid or log a
bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00118: The default FacesMessage.FACES_MESSAGES cannot be
found
Cause: NullPointerException. FacesMessage.FACES_MESSAGES from the jsf spec
could not be found.
Action: Log a bug against the application. Check that the jsf jars are all installed
correctly.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00119: FacesContext is null
Cause: NullPointerException, FacesContext is null when it is passed to a method
and it should not be null.
Action: Log a bug against the application. Check that the jsf jars are all installed
correctly.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00120: custom message should be of type ValueBinding or String
Cause: IllegalArgumentException, custom message in method was not of the
correct type.
Action: Fix the customMessagePattern to be a ValueBinding or a String Object or
log a bug against the application.
Level: 2
Type: ERROR
ADF_TRINID-00001 to ADF_TRINID-30336 2-23
Impact: Logging
ADF_TRINID-00121: Provider {0} did not return an object implementing {1}
Cause: This error is no longer in the code.
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00122: FacesContext.getRenderKit() returned null while trying to get
the {0} service; please check your configuration.
Cause: IllegalStateException, while getting a service in the Service utility code.
Action: Log a bug against the application. Check your configuration and check
that the jsf jars are all installed correctly.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00123: FacesContext or Component is null
Cause: NullPointerException, the FacesContext or UIComponent passed to the
method was null.
Action: Log a bug against the application. Check your configuration and check
that the jsf jars are all installed correctly.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00124: Encoding: {0} is unsupported by JVM
Cause: IllegalCharsetNameException while trying to encode in the ByteLength
Validator using an encoding that is not supported by the JVM.
Action: Check the encoding and check the JVM. Otherwise log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00125: ''value'' is not of type java.util.Date
Cause: Value is not the type it should be.
Action: Change the value to be of type java.util.Date or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00126: Pattern null
Cause: The regular expression's pattern is null and it shouldn't be.
2-24 Oracle Fusion Middleware Error Messages Reference
Action: Fix the regular expression to be a non-null value or log a bug against the
application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00127: Invalid attribute name {0}
Cause: This error is no longer in the code.
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00128: <f:view> was not present on this page; tag {0}encountered
without an <f:view> being processed.
Cause: view tag was not present on the page.
Action: Log a bug against the application. Add a view tag on your jspx page.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30001: The User-Agent "{0}" is unknown; creating an agent with null
agent attributes.
Cause: The user-agent of the user's agent is unknown.
Action: Use a known agent, like IE7 or Firefox.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30002: The agent type is unknown; creating an agent with null agent
attributes.
Cause: The agent type of the user's agent is unknown.
Action: Use a known agent, like IE7 or Firefox.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30003: could not get capabilities from capabilities document
Cause: RuntimeException when trying to get user agent's capabilities map
Action: Use a known agent, like IE7 or Firefox. Log a bug against the Apache
Trinidad framework.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00001 to ADF_TRINID-30336 2-25
ADF_TRINID-30004: Could not locate Capabilities document
Cause: Could not find Capabilities document META-INF/agent/capabilities.xml
Action: Make sure the Apache Trinidad framework jars are installed. Log a bug
against the Apache Trinidad framework.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30005: "Cannot resolve capabilities file"
Cause: Exception while attempting to load the Capabilities document
META-INF/agent/capabilities.xml
Action: Make sure the Apache Trinidad framework jars are installed. Log a bug
against the Apache Trinidad framework.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30006: Invalid dependency found in include by reference
Cause: Invalid dependency found while resolving the capabilities for a give
capabilitiesNode
Action: Use a known agent, like IE7 or Firefox. Log a bug against the Apache
Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30007: Reference to id: {0} not found
Cause: An attempt to get capabilities of node using a node refid, and refid was
not found.
Action: Log a bug against the Apache Trinidad framework. Make sure the
capabilities document is valid xml.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30008: Failed to parse capabilities document
Cause: An IOException while parsing the XML-based capabilities document.
Action: Log a bug against the Apache Trinidad framework. Make sure the
capabilities document is valid xml.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30009: Unable to parse agent string
Cause: ParseException while parsing the agent string.
Action: Use a known agent, like IE7 or Firefox.
2-26 Oracle Fusion Middleware Error Messages Reference
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30010: Element {0} has missing (or empty) attributes
Cause: While attempting to parse a document, the element should have attributes
but doesn't.
Action: Make sure the document that is being parsed has the correct syntax and
attributes. Log a bug against the Apache Trinidad framework or the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30011: Failed to parse capabilities data document
Cause: The capabilities data document was being parsed and failed.
Action: Log a bug against the Apache Trinidad framework. Make sure the
capabilities document is valid xml.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30012: Unable to parse model string
Cause: Error occured while parsing the device nodes in the capabilities file
Action: Check the capabilities document. Make sure the capabilities document is
valid xml. Log a bug against the Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30013: Capability data url {0} is invalid
Cause: MalformedURLException while creating the URL.
Action: Check the capabilities document and make sure url is correctly formed.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30014: Could not find saved view state for token {0}
Cause: Could not find the saved view state in the StateManager.
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30015: No structure available and no root available
ADF_TRINID-00001 to ADF_TRINID-30336 2-27
Cause: While attempting to restore the state in the StateManager, no view root
was available.
Action: Log a bug against the Apache Trinidad framework or against the
application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30016: No structure available
Cause: While attempting to restore the state in the StateManager, no structure
was available.
Action: Log a bug against the Apache Trinidad framework or against the
application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30017: Ignoring servlet init parameter:{0} unable to parse:{1}
Cause: Attempting to parse servlet init parameter gave error.
Action: Check servlet init parameters. Check your web server.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30018: Could not load ViewHandler {0}
Cause: Attempting to load viewhandler threw exception.
Action: Log a bug against the Apache Trinidad framework or against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30019: Apache Trinidad is running with time-stamp checking
enabled. This should not be used in a production environment. See the {0}
property in WEB-INF/web.xml
Cause: time-stamp checking is enabled in web.xml.
Action: Turn off time-stamp checking in a production environment.
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-30020: Could not load {0}
Cause: Attempting to load an url and an exception occurred.
Action: Make sure the url can be found on the server. Log a bug against the
Apache Trinidad framework or the application.
2-28 Oracle Fusion Middleware Error Messages Reference
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30021: Could not instantiate UploadedFileProcessor
Cause: Attempting to instantiate UploadedFileProcessor failed.
Action: Make sure the Trinidad jars are installed correctly. Log a bug against the
Apache Trinidad framework.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30022: Trinidad is running in debug mode. Do not use in a
production environment. See:{0}
Cause: debug mode is turned on.
Action: Set debug to false in web.xml.
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-30023: Element {0} is not understood
Cause: Attempting to parse WEB-INF/trinidad-config.xml, an invalid element
was found.
Action: Check the trinidad-config.xml file to make sure the element is valid.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30024: Element {0} does not support EL expressions.
Cause: Attempting to parse WEB-INF/trinidad-config.xml, and found an element
that does not support EL binding EL bound.
Action: Check the trinidad-config.xml file and don't EL bind the element.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30025: "Element {0} only accepts integer values
Cause: Found problem in WEB-INF/trinidad-config.xml.
Action: Check the trinidad-config.xml file.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30026: Could not find context class loader.
Cause: Attempting to call Thread.currentThread().getContextClassLoader()
ADF_TRINID-00001 to ADF_TRINID-30336 2-29
Action: Check the web server. Log a bug against the Apache Trinidad framework
or the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30027: Configurator services already initialized.
Cause: While initializing the global configurator and the configurator services,
discovered they are already initialized.
Action: Do not initial configurator services more than once.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30028: RequestContext had not been properly released on earlier
request.
Cause: RequestContext was checked to see if it was released and it wasn't.
Action: No action needed, since the code will clean this up. Check the code to
make sure it is properly releasing the RequestContext.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30029: Unable to set request character encoding to {0}, because
request parameters have already been read.
Cause: Attempting to set the character encoding after parameters have been
retrieved.
Action: Log a bug against the Apache Trinidad framework because the code is
calling setCharacterEncoding at the wrong time.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30030: No 'DialogUsedRK' key available for returnFromDialog to do
the right thing!
Cause: Return from a dialog caused this error.
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30031: Could not queue return event: no launch source
Cause: Attempting to queue return event.
Action: Check your dialog code to make sure the launch source exists. Log a bug
against the Apache Trinidad framework or the application.
2-30 Oracle Fusion Middleware Error Messages Reference
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30032: RenderKit {0} does not support DialogRenderKitService, and
cannot be used to launch dialogs; using a single window instead.
Cause: Attempting to launch dialog.
Action: Use a renderkit that supports DialogRenderKitService or don't use
DialogRenderKitService.
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-30033: Apache Trinidad is using HTTPSession for change persistence
Cause: Notification to tell application developer that Trinidad is using
HTTPSession
Action: No action needed.
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-30034: Unable to create ChangeManager:{0}
Cause: Exception attempting to create the ChangeManager.
Action: Check your ChangeManager configuration. Log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30035: Could not find partial trigger {0} from {1}
Cause: Attempting to find partial trigger.
Action: Make sure the partialTriggers are set to an existing component's id. View
the jspx page in JDeveloper and JDeveloper will flag the errors for you. Log a bug
against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30036: Failed to set character encoding {0}
Cause: Attempting to set character encoding failed.
Action: Log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30037: Detecting request character encoding is disable.
ADF_TRINID-00001 to ADF_TRINID-30336 2-31
Cause: Exception getting character encoding from ServletRequest.
Action: Enable ServletRequest's character encoding if needed.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30038: Failed to obtain ServletRequest#setCharacterEncoding()
method: {0}
Cause: Exception getting character encoding from ServletRequest
Action: Enable ServletRequest's character encoding if needed.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30039: The component is null, but it is needed for the client id, so no
script written
Cause: The UIComponent passed to the method is null.
Action: Make sure you pass an non-null UIComponent into the method. Log a
bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30040: Client id is null, no script rendered
Cause: The UIComponent passed to the method is null.
Action: Make sure you pass an non-null UIComponent into the method. Log a
bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30041: Tried to create converter for type {0}, but could not, likely
because no converter is registered.
Cause: Attempting to create a converter failed.
Action: Log a bug against the application. Register a converter.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30042: Client id is null, no script rendered
Cause: Attempting to create a converter failed.
Action: Log a bug against the application. Register a converter.
Level: 1
Type: ERROR
2-32 Oracle Fusion Middleware Error Messages Reference
Impact: Logging
ADF_TRINID-30043: Instantiation of Property {0} failed.
Cause: Attempting to instantiated a Property caused an Exception.
Action: Log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30044: Couldn't get unique name!
Cause: Attempting to get a unique name from the image cache failed.
Action: Log a bug against the Apache Trinidad framework. This exception should
never happen.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30045: Elapsed time:{0} secs to encode gif
Cause: Encoding gifs.
Action: No action needed.
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-30046: laf "{0}" not found.
Cause: Attempting to find the look and feel failed.
Action: Log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30047: Illegal character (space) in "name" attribute
Cause: Attempting to parse the name attribute.
Action: Log a bug against the application. Check the name attribute and remove
space
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30048: "name" attribute incorrectly set to "name"
Cause: Attempting to parse the name attribute.
Action: Log a bug against the application. Check the name attribute and remove
space
Level: 1
Type: WARNING
ADF_TRINID-00001 to ADF_TRINID-30336 2-33
Impact: Logging
ADF_TRINID-30049: "name" attribute set to "target", which will cause Javascript
errors.
Cause: Attempting to parse the name attribute.
Action: Log a bug against the application. Check the name attribute and remove
space
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30050: The value of the "{0}" attribute starts with "javascript:"; this is
unnecessary, and in fact can lead to Javascript errors.
Cause: Attempting to write the html to the page.
Action: Fix the attribute in the jspx page. Log a bug against the application or if it
is in the renderer, against the Apache Trinidad framework
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-30051: Elements not closed:
Cause: Attempting to write the html to the page.
Action: Fix the element in the jspx page. Log a bug against the application or if it
is in the renderer, against the Apache Trinidad framework
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30052: Comments cannot include "--"
Cause: Attempting to write the html to the page.
Action: Fix this in the jspx page. Log a bug against the application or if it is in the
renderer, against the Apache Trinidad framework
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30053: Ending {0} when {1} expected. Passes:{2}
Cause: Attempting to write the html to the page.
Action: Fix this in the jspx page.Log a bug against the application or if it is in the
renderer, against the Apache Trinidad framework
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30054: Writing attribute outside of element
Cause: Attempting to write the html to the page.
2-34 Oracle Fusion Middleware Error Messages Reference
Action: Fix this in the jspx page. Log a bug against the application or if it is in the
renderer, against the Apache Trinidad framework
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30055: Attribute "{0}" output twice; writing attribute as "duplicate_
{1}" instead.
Cause: Attempting to write the html to the page.
Action: Fix this in the jspx page. Log a bug against the application or if it is in the
renderer, against the Apache Trinidad framework
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30056: Element End name:{0} does not match start name:{1}
Cause: Attempting to write the html to the page.
Action: Fix this in the jspx page. Log a bug against the application or if it is in the
renderer, against the Apache Trinidad framework
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30057: GroupNode {0} refers to no valid node.
Cause: Attempting to process the group node.
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30058: Exception creating model {0}
Cause: Attempting to create a menu model.
Action: Fix the menuModel. Log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30059: EL Expression {0} is invalid or returned a bad value.
Cause: Attempting to create a menu model, and invalid EL expression was found.
Action: Fix the invalid EL expression. Log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30060: Resource bundle {0} could not be found.
ADF_TRINID-00001 to ADF_TRINID-30336 2-35
Cause: Attempting to load a bundle in the menu model.
Action: Make sure the resource bundle can be found. Log a bug against the
application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30061: error closing file:{0}
Cause: Attempting to process the region metatdata file.
Action: Fix the region metadata file to be a valid xml. Log a bug against the
application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30062: Error getting region-metadata files:{0}
Cause: Attempting to process the region metatdata file.
Action: Fix the region metadata file to be a valid xml and make sure it can be
found on the filesystem. Log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30063: Error reading region-metadata file:{0}
Cause: Attempting to process the region metatdata file.
Action: Fix the region metadata file to be a valid xml. Log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30064: Replaced jspUri {0} with {1} for componentType:{2}
Cause: Attempting to process the region metatdata file.
Action: Fix the region metadata file to be a valid xml. Log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30065: Unknown element:{0} at {1}
Cause: Attempting to process the region metatdata file.
Action: Fix the region metadata file to be a valid xml. Log a bug against the
application.
Level: 1
2-36 Oracle Fusion Middleware Error Messages Reference
Type: WARNING
Impact: Logging
ADF_TRINID-30066: <{0}> is missing at {1}
Cause: Attempting to process the region metatdata file.
Action: Fix the region metadata file to be a valid xml. Log a bug against the
application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30067: Exception at {0}
Cause: Attempting to process the region metatdata file.
Action: Fix the region metadata file to be a valid xml. Log a bug against the
application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30068: Instantiation of Renderer {0} failed
Cause: Attempting to instantiate a Renderer failed.
Action: Check that your renderer is registered correctly in faces-config.xml. Log a
bug against the application or Apache Trinidad framework.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30069: Renderer '{0}' not found for component family '{1}'
Cause: Attempting to instantiate a Renderer failed.
Action: Check that your renderer is registered correctly in faces-config.xml. Log a
bug against the application or Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30070: There is no SkinFactory
Cause: Trying to find the SkinFactory failed. The SkinFactory was not registered.
Action: Log a bug against the application. Make sure the TrinidadFilter is
installed since this registers the SkinFactory.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30071: The skin {0} specified on the requestMap will not be used
because the styleSheetDocument id on the requestMap does not match the local
skin's styleSheetDocument's id.
ADF_TRINID-00001 to ADF_TRINID-30336 2-37
Cause: A skin was specified on the requestMap but it can't be used.
Action: Log a bug against the application. Check to make sure the jars on the
portal server match the jars on the portlet server to make the skin's
styleSheetDocument ids match.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30072: The skin {0} specified on the requestMap will not be used
because its styleSheetDocument id was not in the requestMap and it is needed
to compare with the local skin's styleSheetDocument's id to make sure the skins
are the same.
Cause: A skin was specified on the requestMap but it can't be used.
Action: Log a bug against the application. Check to make sure the jars on the
portal server match the jars on the portlet server to make the skin's
styleSheetDocument ids match. Also, send the styleSheetDocument id to the
server as well as the skin id.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30073: The skin {0} specified on the requestMap will not be used
because it does not exist.
Cause: A skin was specified on the requestMap but it can't be used because it
does not exist on the server.
Action: Log a bug against the application. Check to make sure the jars on the
portal server match the jars on the portlet server to make the skin's
styleSheetDocument ids match.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30074: Could not get skin {0} from the SkinFactory
Cause: Attempted to get a skin failed.
Action: Log a bug against the application. The skin requested was not registered
with the SkinFactory on startup. Make sure the TrinidadFilter is installed.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30075: The java.io.File handle ("javax.servlet.context.tempdir") is not
set in the ServletContext
Cause: Attempting to get the file handle from the ServletContext.
Action: Log a bug against the application.
Level: 1
Type: ERROR
2-38 Oracle Fusion Middleware Error Messages Reference
Impact: Logging
ADF_TRINID-30076: No AdfRenderingContext available
Cause: Attempting to get the RenderingContext failed.
Action: Check that your Trinidad jars are installed properly. Log a bug against
the Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30077: Basic HTMLRenderKit could not be located
Cause: Attempting to locate the HTMLRenderKit failed.
Action: Check that your Trinidad jars are installed properly.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30078: Could not find basic HTML renderer for {0}, type={1}
Cause: Could not find basic HTML renderer.
Action: Check that your Trinidad jars are installed properly.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30079: Could not get stylesheet cache
Cause: Attempting to get the stylesheet cache failed.
Action: Make sure your stylesheet directory is writable.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30080: Model not specified for the chart component.
Cause: Attempting to get the model on the chart component failed.
Action: Specify the model for the chart component. Log a bug against the
application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30081: Trains must be used inside of a form
Cause: The train component is not inside a form component.
Action: Log a bug against the application. Put the train inside a form
Level: 1
Type: WARNING
ADF_TRINID-00001 to ADF_TRINID-30336 2-39
Impact: Logging
ADF_TRINID-30082: Train expect a nodeStamp facet, no such facet was found for
train {0}
Cause: Problem found while rendering the train.
Action: Log a bug against the application. Set a nodeStamp facet on the train
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30083: Visible stop count must be > 0, found {0}
Cause: Problem found while rendering the train.
Action: Log a bug against the application. Set the train visible count to > 0.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30084: Visible stop count must be an integer, found {0}
Cause: Problem found while rendering the train.
Action: Log a bug against the application. Set the train visible count to > 0.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30085: 'nodeStamp' facet missing!
Cause: Problem found while rendering the train.
Action: Log a bug against the application. Set a nodeStamp facet on the train
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30086: Frames must appear inside FrameBorderLayouts
Cause: Problem found while rendering frames.
Action: Log a bug against the application. Set frame inside of frameborderlayout
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30087: No PPR-capable 'id' found for elements of {0}. This component
has not written-out an 'id' attribute.
Cause: Trying to PPR update components failed.
Action: Log a bug against the application. Add ids to your components.
Level: 1
Type: WARNING
2-40 Oracle Fusion Middleware Error Messages Reference
Impact: Logging
ADF_TRINID-30088: Invalid string attribute for chooseDate: {0}
Cause: Attempting to convert value to a Date.
Action: Log a bug against the application. See the chooseDate documentation.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30089: Unable to encode URL '{0}' using encoding '{1}'
Cause: Attempting to encode an url failed.
Action: Recheck your url to make sure it is valid. Log a bug against the Apache
Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30090: Sorting disabled; table is not in a form
Cause: Attempting to render a table that is not in a form.
Action: Log a bug against the application. Add a form as a parent to the table.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30091: {0}: Column used outside of a Table
Cause: Attempting to render a table that has a column outside of the table.
Action: Log a bug against the application. Put all column components inside a
table component.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30092: Cannot add client side converter and validators as the node
name is null
Cause: Attempting to add client-side converters and validators to the page.
Action: Log a bug against the applicaton. Set the node name.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30093: Null validators iterator for {0}
Cause: Attempting to process validators found null validator iterators.
Action: Log a bug against the application. Check the validators.
Level: 1
Type: WARNING
ADF_TRINID-00001 to ADF_TRINID-30336 2-41
Impact: Logging
ADF_TRINID-30094: There is already a converter on "{0}". There should only be one
converter per component.
Cause: More than one converter found on a component.
Action: Log a bug against the application. Ensure you have only one converter
per component in your page.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30095: frame:{0} is missing attribute:{1}
Cause: Missing attribute in frameborderlayout.
Action: Log a bug against the application. Add the missing attribute.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30096: Warning: illegal component hierarchy detected, expected
UIXCommand but found another type of component instead.
Cause: Did not find the expected command component in the hierarchy.
Action: Log a bug against the application. Check your component hierarchy in
your page.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30097: Warning: NavigationLevelRenderer was looking for child
property "{0}" but none was found, it is likely that an unexpected child
component was found (expected CommandNavigationItem).
Cause: Rendering navigationLevel component and did not find expected child.
Action: Log a bug against the application. Make sure CommandNavigationItem is
a child of the navigationLevel component
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30098: PanelAccordion must be used inside of a form
Cause: Rendering panelAccordion that was not in a form.
Action: Log a bug against the application. Make sure panelAccordion is inside a
form.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30099: Error during partial-page rendering
2-42 Oracle Fusion Middleware Error Messages Reference
Cause: Rendering a partial-page pass failed.
Action: Log a bug against the application. Check your page to make sure you are
using PPR correctly.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30100: The poll component must be inside of a form; disabling poll
{0}
Cause: Rendering poll component that wasn't in a form component.
Action: Log a bug against the application. Make sure poll is inside a form
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30101: The number of items selected for shuttle '{0}' exceeds the total
number of items in the shuttle. No selected items will be returned.
Cause: Rendering the shuttle component and the selected items.
Action: Log a bug against the application. Check the shuttle component and its
children.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30102: showDetail is not in a form, and will not function correctly
Cause: Rendering showDetail component that wasn't in a form component.
Action: Log a bug against the application. Make sure showDetail is inside a form
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30103: Some entries in value of {0} not found in SelectItems: {1}
Cause: Rendering a selectMany component found inconsistency in selectItem
values.
Action: Log a bug against the application. Check your selectMany components
and the selectItems.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30104: Could not find selected item matching value "{0}" in {1}
Cause: Rendering a select component and found problem with the select items.
Action: Log a bug against the application. Check your select components and the
value and selectItems
Level: 1
ADF_TRINID-00001 to ADF_TRINID-30336 2-43
Type: WARNING
Impact: Logging
ADF_TRINID-30105: Table with id: {0} has no visible columns!
Cause: Rendering a table found no visible columns.
Action: Log a bug against the application. Make sure your table has at least one
visible column.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30106: The tree component must be used inside of a form.
Cause: Rendering tree component that wasn't in a form component.
Action: Log a bug against the application. Make sure tree is inside a form
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30107: Couldn't find scriptlet: {0}
Cause: Rendering a component and a scriptlet could not be found.
Action: Check the code that registers teh scriptlet if this is in our component. Log
a bug against the application or the Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30108: Unable to get resource {0}
Cause: Rendering a scriptlet.
Action: Log a bug against the Apache Trinidad framework. Possibly a problem in
the build system.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30109: Apache Trinidad is running with debug javascript. Do not use
in a production environment. See the "+_DEBUG_JAVASCRIPT+" parameter in
/WEB-INF/web.xml
Cause: debug javascript is enabled in web.xml.
Action: Turn off debug javascript checking in a production environment in
web.xml.
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-30110: Illegal value:{0} for {1}
Cause: Rendering the table component and found illegal banding interval.
2-44 Oracle Fusion Middleware Error Messages Reference
Action: Log a bug against the application. See the table and column component
documentation regarding column and row banding intervals.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30111: Unknown value for align:{0}
Cause: Rendering the table component and found illegal value for the align
attribute.
Action: Log a bug against the application. See the column component
documentation for valid align attribute values.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30112: tableSelect components may only be used inside table and
treeTable
Cause: While rendering tableSelect component the valid parent component was
not found.
Action: Log a bug against the application. Make sure tableSelect components are
inside table or treeTable.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30113: nodeStamp facet on treeTable:{0} is missing or not of type
UIXColumn
Cause: While rendering a treeTable component, a problem with the nodeStamp
facet was found.
Action: Log a bug against the application. See the treeTable documentation and
check your jspx page.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30114: Unexpected tree state: focus rowKey is empty on an
expand/collapse all request.
Cause: While rendering a tree component an unexpected tree state was found.
Action: Log a bug against the application. See the treeTable or tree documentation
and check your jspx page.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30115: Page contains no form, it will not work properly
Cause: Rendering the page without a form component.
ADF_TRINID-00001 to ADF_TRINID-30336 2-45
Action: Log a bug against the application. Make sure there is a form in the page
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30116: Only tr:showDetailItem is allowed as child of tr:panelTabbed.
Cause: While rendering a panelTabbed component an illegal child was found.
Action: Log a bug against the application. Use showDetailItem as the child of
panelTabbed.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30117: Value for component with id '{0}' is not a valid
BoundedRangeModel instance
Cause: Rendering component and found an invalid BoundedRangeModel.
Action: Log a bug against the application. See the BoundedRangeModel
documentation.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30118: Resource "{0}" at path "{1}" not found
Cause: While rendering the resource was not found.
Action: Make sure the resource exists. Log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30119: Could not find bundle {0}
Cause: While rendering, a translation bundle could not be found.
Action: Log a bug against the Apache Trinidad framework. Make sure the jars are
installed correctly.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30120: Required attribute "{0}" not found.
Cause: While rendering, a required attribute was not found.
Action: Set the required attribute on the component in the jspx file. Log a bug
against the application.
Level: 1
Type: WARNING
Impact: Logging
2-46 Oracle Fusion Middleware Error Messages Reference
ADF_TRINID-30121: {0} is not an understood child element
Cause: While parsing a document, an unknown element was found.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30122: "{0}" is not an understood attribute
Cause: While parsing the document, an unknown attribute was found.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30123: Only one child element is allowed here.
Cause: While parsing the document, an error was found.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30124: Could not parse value of attribute: {0}
Cause: While parsing the document, an error was found.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30125: Could not parse value of attribute: {0}, namespace={1}
Cause: While parsing the document, an error was found.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30126: Unknown attribute: {0}
Cause: While parsing the document, an error was found.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
ADF_TRINID-00001 to ADF_TRINID-30336 2-47
Type: WARNING
Impact: Logging
ADF_TRINID-30127: Unknown attribute: {0}, namespace={1}
Cause: While parsing the document, an error was found.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30128: Error when parsing the skin css file. The property's name
cannot be null or the empty string. The parser will ignore it. name is '{0}' and
value is '{1}'
Cause: While parsing the skin css file, an error was found.
Action: Log a bug against the application. Check your skin css file.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30129: Ignoring properties {0} because there is no corresponding
selector.
Cause: While parsing the skin css file, an error was found.
Action: Log a bug against the application. Check your skin css file.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30130: Error reading from the skin css file
Cause: While parsing the skin css file, an error was found.
Action: Log a bug against the application. Check your skin css file.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30131: Can't add Skin with null skinId or null skin
Cause: While registering skins, an error was found.
Action: Log a bug against the application. Check your trinidad-skins.xml file to
make sure the skin is defined correctly.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30132: Can't get Skin with null skinId
Cause: While retrieving a skin, an error was found.
2-48 Oracle Fusion Middleware Error Messages Reference
Action: Log a bug against the application. Check your trinidad-skins.xml file to
make sure the skin is defined correctly.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30133: Can't find a skin that matches family {0} and renderkit {1}, so
we will use the simple skin
Cause: While retrieving a skin, an error was found.
Action: Log a bug against the application. Check your trinidad-skins.xml file to
make sure the skin is defined correctly. Check trinidad-config and the skin-family
element. Make sure the skin's renderkitid matches the current renderkit id
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30134: Could not get the stylesheet document's timestamp because
we couldn't open the connection.
Cause: Trying to get the skin's stylesheet document's timestamp failed.
Action: Log a bug against the application. Check the stylesheet document file and
directory to make sure it can be opened.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30135: The following skins extend each other in a circular fashion or
the skin they extend does not exist:{0}
Cause: While registering the skins from the trinidad-skins.xml files, an error was
found.
Action: Log a bug against the application. Check all the trinidad-skins.xml files
(even the ones in jars on the classpath) to fix any skins that extend others in a
circular fashion.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30136: Unable to locate base skin "{0}" for use in defining skin of id
"{1}", family "{2}", renderkit ID "{3}". Using the default base skin "{4}".
Cause: While registering the skins from the trinidad-skins.xml files, an error was
found.
Action: Log a bug against the application. Check all the trinidad-skins.xml files
(even the ones in jars on the classpath) to make sure the base skin exists and do
not extend a skin that doesn't exist.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-00001 to ADF_TRINID-30336 2-49
ADF_TRINID-30137: Error parsing:{0}
Cause: While parsing the trinidad-skins.xml file, an error was found.
Action: Log a bug against the application. Check the trinidad-skins.xml files (even
ones in jars) for format problems.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30138: error loading file:{0}
Cause: While attempting to load the trinidad-skins.xml file, an error was found.
Action: Log a bug against the application. Check the trinidad-skins.xml files (even
ones in jars) for format problems.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30139: Could not load style sheet: {0}
Cause: Could not load the skin's css file.
Action: Log a bug against the application. Check the skin's css file to make sure it
exists and the style-sheet-name url in trinidad-skins.xml is correct.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30140: IOException during parse of {0}
Cause: IOException while creating a skin's stylesheet document.
Action: Log a bug against the application. Check the stylesheet document.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30141: No styles found context - {0}
Cause: While creating the skin's stylesheet document, no styles were found that
matched the StyleContext.
Action: Log a bug against the application. There should always be base skin
definitions for all contexts.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30142: IOException while creating file: {0}
Cause: IOException while creating the skin's stylesheet document.
Action: Log a bug against the application.
Level: 1
2-50 Oracle Fusion Middleware Error Messages Reference
Type: WARNING
Impact: Logging
ADF_TRINID-30143: Unable to generate the style sheet {0} in cache directory
{1}.Please make sure that the cache directory exists and is writable.
Cause: Error while generating skin's stylesheet.
Action: Log a bug against the application. Make sure that the cache directory
exists and is writable.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30144: IOException while opening file for writing: {0}
Cause: Error while generating skin's stylesheet.
Action: Log a bug against the application. Check the cache directory to make sure
it is writable.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30145: The css file has hit IE's limit of 4095 CSS selectors. It has {0}
selectors. The selectors after that will be ignored.
Cause: Error while generating the skin's stylesheet.
Action: Log a bug against the application. You will need to simplify your
skinning file if possible. Otherwise log a bug against Apache Trinidad.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30146: Consecutive sub-element (::) syntax used in selector {0}. This is
not supported.
Cause: Problem found in skin's stylesheet css file.
Action: Log a bug against the application. The skin's css file has two
pseudo-elements in one selector and that is illegal in CSS.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30147: An url value delimited by url() is expected for the property
'{0}' in style sheet '{1}'. Found: '{2}'.
Cause: Problem found in skin's stylesheet css file.
Action: Log a bug against the application. Check the skin's css file.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00001 to ADF_TRINID-30336 2-51
ADF_TRINID-30148: Invalid image uri '{0}' in style sheet '{1}'
Cause: Problem found in skin's stylesheet css file.
Action: Log a bug against the application. Check the skin's css file.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30149: An empty URL was found in style sheet'{0}'
Cause: Problem found in skin's stylesheet css file.
Action: Log a bug against the application. Check the skin's css file.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30150: "<style> elements must have either a name or a selector
attribute
Cause: Problem found in skin's XSS stylesheet.
Action: Log a bug against the application. Check the skin's XSS file.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30151: Could not parse import: {0}
Cause: Problem found in skin's stylesheet.
Action: Log a bug against the application. Check the skin's stylesheet files.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30152: Import missing required href attribute
Cause: Problem found in skin's stylesheet.
Action: Log a bug against the application. Check the skin's stylesheet files.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30153: 'componentType' attribute is required
Cause: Problem found processing page.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: ERROR
Impact: Logging
2-52 Oracle Fusion Middleware Error Messages Reference
ADF_TRINID-30154: Could not find metadata for componentType:{0} in
region-metadata
Cause: Problem found processing page.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30155: There was no jspUri for componentType:{0}
Cause: Problem found processing page.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30156: attribute:{0} is missing on componentType:{1}
Cause: Problem found processing page.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30157: facetRef must be inside of a UIComponent tag.
Cause: Problem found processing page.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30158: Cannot find parent <tr:componentRef>>
Cause: Problem found processing page.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30159: facetName is required on facetRef
Cause: Problem found processing page.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
ADF_TRINID-00001 to ADF_TRINID-30336 2-53
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30160: validator tag is not inside a UIComponent.
Cause: Problem found processing page.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30161: could not create validator for validatorId:{0} and binding:{1}
Cause: Problem found creating the validator.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30162: attribute 'validatorId' is missing
Cause: Problem found creating the validator.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30163: Could not parse value {0} into a Date using pattern
"yyyy-MM-dd"; ignoring.
Cause: Problem found parsing the date value.
Action: Log a bug against the application. Check the jspx page. Use the
yyyy-MM-dd format.
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-30164: No RendererFactory registered for components in namespace
{0}
Cause: RendererFactory not registered.
Action: Log a bug against the Apache Trinidad framework. Make sure the
Trinidad and jsf jars are installed correctly.
Level: 1
Type: WARNING
Impact: Logging
2-54 Oracle Fusion Middleware Error Messages Reference
ADF_TRINID-30165: No Renderer registered for {0}
Cause: Renderer was not registered.
Action: Log a bug against the Apache Trinidad framework or the application.
Check the faces-config.xml file.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30166: Could not get image cache
Cause: Could not find the image cache.
Action: Log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30167: Cannot convert {0} of class:{1} into DataObjectList
Cause: Creating a DataObjectList adapter class around an object fails
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: NOTIFICATION
Impact: Logging
ADF_TRINID-30168: Could not convert {0} into a {1}
Cause: Error converting a value into another value.
Action: Log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30169: Unsupported UINode:{0}, path = {1}
Cause: Unsupported UINode found while rendering.
Action: Log a bug against the application.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30170: Invalid value. Defaulting component with id '{0}' to
indeterminate mode
Cause: Invalid value rendering processing component.
Action: Log a bug against the application. Check your jspx page in JDeveloper so
it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-00001 to ADF_TRINID-30336 2-55
ADF_TRINID-30171: No form found for {0}
Cause: Rendering a component that wasn't in a form component.
Action: Log a bug against the application. Make sure your form components are
inside a form. Check your jspx page in JDeveloper so it can flag the errors.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30172: Could not get image provider for icon: {0}
Cause: Error while attempting to get image provider.
Action: Log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30173: Could not get colorized icon for: {0}
Cause: Error while attempting to get colorized image.
Action: Log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30174: Could not find icon with key given
Cause: Error while attempting to get colorized image.
Action: Log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30175: Could not find renderer for alias {0}
Cause: Error finding renderer.
Action: Check the faces-config.xml file to make sure the renderer is registered.
Log a bug against the Apache Trinidad framework.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30176: Unable to flip icon '{0}' because it is not under the current
request context, which is '{1}'
Cause: Error trying to flip laf icon.
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
2-56 Oracle Fusion Middleware Error Messages Reference
ADF_TRINID-30177: Could not locate parent form for formValue {0}
Cause: Rendering the page and couldn't find a form as a parent..
Action: Log a bug against the application. Make sure the formValue has a form
parent.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30178: The component is null for node with local name {0}
Cause: Error while finding component.
Action: Check the faces-config.xml file to make sure the component/renderers are
registered. Log a bug against the Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30179: Could not get flipped icon for: {0}
Cause: Error while trying to find a flipped icon.
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30180: The node name is null and therefore no client side required
validator added for node with local name {0}
Cause: Error finding validator.
Action: Log a bug against the application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30181: Could not find class {0}
Cause: Error finding class in Coercions.
Action: Make sure the jars are installed correctly. Log a bug against the
application.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30182: Could not load class {0}:{1}
Cause: Error finding class in Coercions.
Action: Make sure the jars are installed correctly. Log a bug against the
application.
Level: 1
ADF_TRINID-00001 to ADF_TRINID-30336 2-57
Type: WARNING
Impact: Logging
ADF_TRINID-30183: Method {0} does not return an Icon
Cause: Error attempting to retrieve an Icon.
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30184: Could not find method {0} in {1}
Cause: Error trying to find method.
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30185: Could not find access {0} in {1}
Cause: This error is no longer in the code.
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30186: Required element 'skin-id' not found.
Cause: Error in trinidad-skins.xml file.
Action: Log a bug against the appication. Check the trinidad-skins.xml file and
make sure your skin has a skin-id
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30187: Required element 'style-sheet-name' not found.
Cause: Error in trinidad-skins.xml file.
Action: Log a bug against the appication. Check the trinidad-skins.xml file and
make sure your skin has a style-sheet-name
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30188: Required element 'id' not found.
Cause: Error in trinidad-skins.xml file.
Action: Log a bug against the appication. Check the trinidad-skins.xml file and
make sure your skin has a unique id.
Level: 1
2-58 Oracle Fusion Middleware Error Messages Reference
Type: ERROR
Impact: Logging
ADF_TRINID-30189: Required element 'family' not found.
Cause: Error in trinidad-skins.xml file.
Action: Log a bug against the appication. Check the trinidad-skins.xml file and
make sure your skin has the skin-family set.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30190: Malformed property entry: {0}={1}
Cause: Error in renderertype-localname.properties.
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30191: Could not load renderer type to local name mapping.
Cause: Error in renderertype-localname.properties.
Action: Log a bug against the Apache Trinidad framework.
Level: 1
Type: ERROR
Impact: Logging
ADF_TRINID-30192: Encoding {0} is not supported at the client side. This will skip
client side validation.
Cause: Attempting to use an encoding the client doesn't support.
Action: Contact the system administrator to see if the encoding is supposed to be
supported.
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30193: The TrinidadFilter has not been installed. Apache Trinidad
requires this filter for proper execution.
Cause: Detected that the TrinidadFilter was not installed.
Action: Log a bug against the application. Install the TrinidadFilter; see web.xml
Level: 1
Type: WARNING
Impact: Logging
ADF_TRINID-30194: mergeCapabilities() may only be used with Agents created by
this class.
Cause: Attempting to merge capabilities with unsupported agent.
ADF_TRINID-00001 to ADF_TRINID-30336 2-59
Action: Use a supported agent/browser. Log a bug against the Apache Trinidad
framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30195: Invalid Namespace: {0}
Cause: Invalid namespace parsing capabilities document.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30196: Invalid Root Element: {0} {1}
Cause: Invalid root element parsing capabilities document.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30197: Unexpected ''\''.
Cause: Error parsing agent's name and version.
Action: Log a bug against the Apache Trinidad framework. Try a different
browser.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30198: Unexpected character. Expecting ''.'' or ''\''
Cause: Error parsing agent's name and version.
Action: Log a bug against the Apache Trinidad framework. Try a different
browser.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30199: Unexpected character. Expecting ''*''
Cause: Error parsing agent's name and version.
Action: Log a bug against the Apache Trinidad framework. Try a different
browser.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30200: Expecting char
2-60 Oracle Fusion Middleware Error Messages Reference
Cause: Error parsing agent's name and version.
Action: Log a bug against the Apache Trinidad framework. Try a different
browser.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30201: Unterminated quote.
Cause: Error parsing agent's name and version.
Action: Log a bug against the Apache Trinidad framework. Try a different
browser.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30202: Unexpected char.
Cause: Error parsing agent's name and version.
Action: Log a bug against the Apache Trinidad framework. Try a different
browser.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30203: Invalid saved state object
Cause: Saved state wasn't an instance of PageState.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30204: Don't support transient here
Cause: transient isn't supported.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30205: Per-request disk space limits exceeded.
Cause: per-request disk space limits exceeded.
Action: See the System Administrator.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00001 to ADF_TRINID-30336 2-61
ADF_TRINID-30206: popView(): No view has been pushed.
Cause: IlegalStateException in DialogService.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30207: popView(): No view has been pushed.
Cause: IlegalStateException in DialogService.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30208: You must call next() at least once
Cause: This is no longer an error in the code.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30209: {0} UnsupportedOperationException
Cause: This is no longer an error in the code.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30210: Only HttpServletRequest supported
Cause: Attempting to get a paramter from ServletExternalContext without a
HTTPServletRequest.
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30211: {0} can not be null.
Cause: Attempting to get a paramter from ServletExternalContext without a
HTTPServletRequest.
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
2-62 Oracle Fusion Middleware Error Messages Reference
ADF_TRINID-30212: Request is null on this context.
Cause: Calling ServletExternalContext's dispatch without a servletRequest.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30213: Response is null on this context.
Cause: Calling ServletExternalContext's dispatch without a servletResponse.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30214: Unsupported conversion from:{0} to:{1}
Cause: IllegalArgumentException while converting values in the BaseConverter.
Action: Check the converter code. Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30215: Cannot convert to:{0}"
Cause: This is no longer an error in the code.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30216: Null name
Cause: The name attribute is null.
Action: Log a bug against the application. Set the name to a non-null value.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30217: Null value
Cause: The value attribute is null.
Action: Log a bug against the application. Set the value to a non-null value.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30218: putAll operation not supported for WrappingMap
ADF_TRINID-00001 to ADF_TRINID-30336 2-63
Cause: UnsupportedOperationException, the WrappingMap which implements
Map does not support the putAll operation and it was called.
Action: Log a bug against the Apache Trinidad framework. Fix code to not call
putAll.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30219: clear operation not supported for WrappingMap
Cause: UnsupportedOperationException, the WrappingMap which implements
Map does not support the clear operation and it was called.
Action: Log a bug against the Apache Trinidad framework. Fix code to not call
clear.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30220: Problem loading...
Cause: While generating images, there was a problem.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30221: While grabbing pixels:
Cause: While generating images, there was a problem.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30222: Error while fetching image. grabbed {0} pixel values of the {1}
x {2} image.
Cause: While generating images, there was a problem.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30223: Exceeded gif color limit.
Cause: While generating images, there was a problem.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
2-64 Oracle Fusion Middleware Error Messages Reference
Impact: Logging
ADF_TRINID-30224: No space left for transparency
Cause: While generating images, there was a problem.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30225: Different lengths - sourceColors and targetColors
Cause: While generating images, there was a problem.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30226: Cannot yet nest:{0} elements
Cause: Region metadata was nested and it shouldn't be.
Action: Log a bug against the application. Do not nest region metadata in your
page. Use JDeveloper to check the syntax of your page.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30227: Duplicate renderer type "{0}" for family "{1}"
Cause: Attempting to add a duplicate renderer for a family to the render kit.
Action: Log a bug against the Apache Trinidad framework. Check the renderer
registration in the faces-config.xml file.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30228: No returnId is available for returning from the dialog; this
usually means that you aren't in a dialog in the first place.
Cause: Returning from a dialog and found no returnId.
Action: Log a bug against the application. To return from a dialog, you need to be
in a dialog, or make the pageFlowScope available
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30229: TrainRenderer can only renders instances of {0}, found {1}
Cause: While rendering the train the wrong instance was found.
Action: Log a bug against the application. Check your jspx page.
Level: 2
ADF_TRINID-00001 to ADF_TRINID-30336 2-65
Type: ERROR
Impact: Logging
ADF_TRINID-30230: SelectOne submittedValue's index {0} is out of bounds. It
should be between 0 and {1}
Cause: Rendering the selectOne component, the submittedValue was out of
bounds from what it should be.
Action: Log a bug against the application. Possibly the model changed when it
shouldn't have, so check the model.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30231: SelectOne could not convert submittedValue's index {0} into
int {1}
Cause: While rendering the selectOne component, the submittedValue couldn't be
converted to an int.
Action: Log a bug against the application. Check the selectOne component's
model.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30232: Don't call this for column headers
Cause: While rendering the table, the method getHeaderFormatClass was called
for a column header.
Action: Log a bug against the Apache Trinidad framework. Fix code to not call
the method for a column header.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30233: contextURI is null
Cause: Attempting to get a configuration context url where the directory is
unavailable.
Action: Log a bug against the Apache Trinidad framework. Check the directory.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30234: context URI for {0} ends with a slash
Cause: The configuration context URI ends with a slash and it shouldn't.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
2-66 Oracle Fusion Middleware Error Messages Reference
ADF_TRINID-30235: contextPath is null {0}
Cause: The configuration context path is null.
Action: Log a bug against the Apache Trinidad framework
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30236: Registered null URI
Cause: Registering a configuration url and found it is null.
Action: Log a bug against the Apache Trinidad framework
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30237: A null path was registered for {0}
Cause: Registering a configuration found a null path being registered.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30238: No base path registered
Cause: Registering a configuration found no base path was registered.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30239: # of keys and values must match
Cause: While processing ServletRequestParameters an error was found.
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30240: {0} is not a character
Cause: Trying to coerce a type to a character and found that it wasn't a character.
Action: Log a bug against the application. Check the valuebindings.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30241: Could not find class {0}
Cause: Error finding class in Coercions.
ADF_TRINID-00001 to ADF_TRINID-30336 2-67
Action: Log a bug against the application. Check the valuebindings.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30242: {0} cannot be parsed into a {1}
Cause: Attempting to coerce a value.
Action: Log a bug against the application. Check the valuebindings.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30243: type is null
Cause: Attempting to coerce a value.
Action: Log a bug against the application. Check the valuebindings.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30244: Could not coerce value of type {0} into type {1}
Cause: Attempting to coerce a value.
Action: Log a bug against the application. Check the valuebindings.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30245: {0} cannot be coerced into a java.awt.Color
Cause: Attempting to coerce a value.
Action: Log a bug against the application. Check the valuebindings.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30246: Could not find {1}
Cause: Attempting to find file failed.
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30247: DecimalFormatContext is not cloneable!
Cause: IllegalStateException while attempting to clone the
DecimalFormatContext.
Action: Log a bug against the Apache Trinidad framework.
2-68 Oracle Fusion Middleware Error Messages Reference
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30248: User-defined subclasses not supported.
Cause: IllegalStateException because you cannot subclass the LocaleContextImpl.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30249: Unknown reading direction: {0}
Cause: Attempting to set the reading direction to an unknown value.
Action: Log a bug against the application. Try a different browser.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30250: Format.parseObject(String) failed
Cause: Attempting to parse a ColorFormat failed.
Action: Ensure the ColorFormat is correct. Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30251: Cannot format given Object as a Color
Cause: Attempting to parse a ColorFormat failed.
Action: Ensure the ColorFormat is correct. Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30252: Illegal pattern character ''{0}''
Cause: Attempting to parse a ColorFormat failed.
Action: Ensure the ColorFormat is correct. Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30253: Illegal pattern character ''{0}''
Cause: Attempting to parse a ColorFormat failed.
Action: Ensure the ColorFormat is correct. Log a bug against the application.
Level: 2
Type: ERROR
ADF_TRINID-00001 to ADF_TRINID-30336 2-69
Impact: Logging
ADF_TRINID-30254: FastMessageFormat only supports numeric arguments
Cause: IllegalArgumentException, in FastMessageFormat while formatting.
Action: Use only numeric arguments in FastMessageFormat. Log a bug against
the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30255: End of pattern not found
Cause: IllegalArgumentException, in FastMessageFormat while formatting.
Action: Fix the pattern in FastMessageFormat. Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30256: FastMessageFormat: empty argument - {} - found
Cause: IllegalArgumentException, in FastMessageFormat while formatting.
Action: Fix the FastMessageFormat. Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30257: Content is not multipart form data
Cause: IllegalStateException while attempting to create a MultipartFormHandler
for the given InputStream and content
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30258: Item is not a file
Cause: IOException while attempting to create a MultipartFormHandler for the
given InputStream and content
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30259: Item has already been read past.
Cause: IOException while attempting to create a MultipartFormHandler for the
given InputStream and content
Action: Log a bug against the application.
Level: 2
2-70 Oracle Fusion Middleware Error Messages Reference
Type: ERROR
Impact: Logging
ADF_TRINID-30260: Input stream has already been requested.
Cause: IOException while attempting to create a MultipartFormHandler for the
given InputStream and content
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30261: Uploaded file of length {0} bytes exceeded maximum allowed
length ({1} bytes)
Cause: EOFException while attempting to create a MultipartFormHandler for the
given InputStream and content
Action: Use smaller files. Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30262: Item has already been read past.
Cause: IOException while attempting to create a MultipartFormHandler for the
given InputStream and content
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30263: End Of File
Cause: IOException while attempting to create a MultipartFormHandler for the
given InputStream and content
Action: Log a bug against the application.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30264: Undeclared prefix: {0}
Cause: Exception while attempting to parse the namespace from a value.
Action: Log a bug against the application. Check the format of the namespace in
the file that is being parsed. JDeveloper will flag errors.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30265: parser is null
Cause: While setting up the ParserManager, a null parser was passed in.
ADF_TRINID-00001 to ADF_TRINID-30336 2-71
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30266: Both rootClass and rootParser are null
Cause: While parsing an xml document the root parser and root class were null.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30267: Circular include of {0} detected!
Cause: SAXParseException while parsing an xml file because a cirular include
was detected.
Action: Log a bug against the application. Check the file that is being parsed and
remove the circular include.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30268: Null id
Cause: While creating a SkinExtension the skin id was null.
Action: Log a bug against the application. Check that the skin-extensions (defined
in trinidad-skins.xml) have an id specified.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30269: Null lContext
Cause: While getting a translated value from the Skin, the locale context was null.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30270: Null iconName
Cause: A null icon was being registered with the Skin.
Action: Log a bug against the Apache Trinidad framework. Check the
skin-extensions to make sure the icons are defined correctly.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30271: "Null styleSheetName"
2-72 Oracle Fusion Middleware Error Messages Reference
Cause: A null stylesheet was being registered with the Skin.
Action: Log a bug against the Apache Trinidad framework. Check the
skin-extensions to make sure the stylesheet name is defined correctly.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30272: No Skin specified.
Cause: Creating a SkinStyleProvider with no skin object.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30273: Null inputStream
Cause: NullPointerException, no inputStream while parsing trinidad-skins.xml
file.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30274: Null parserManager
Cause: NullPointerException, no parserManager while parsing trinidad-skins.xml
file.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30275: Required XSS file {0} does not exist.
Cause: While registering a skin, the required XSS file does not exist.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30276: Null sourceName
Cause: No source name found while parsing the skin's xss stylesheet.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-00001 to ADF_TRINID-30336 2-73
ADF_TRINID-30277: Null argument
Cause: Error registering a look and feel extension, null baselookandfeel, id or
family.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30278: Null propertyName
Cause: While trying to parse an include from an xss file a null property name was
found.
Action: Log a bug against the application. Check the xss file being parsed for a
null property name.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30279: PropertyNode's name cannot be null or the empty string.name
is ''{0}'' and value is ''{1}''
Cause: While trying to parse an include from an xss file a null property name was
found.
Action: Log a bug against the application. Check the xss file being parsed for a
null property name.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30280: child not instance of PropertyNode
Cause: While trying to parse an include from an xss file an invalid child node was
found.
Action: Log a bug against the application. Check the xss file being parsed.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30281: child not an instance of IncludePropertyNode
Cause: While trying to parse an include from an xss file an invalid child node was
found.
Action: Log a bug against the application. Check the xss file being parsed.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30282: Not nested in a UIComponentTag
Cause: JSPException while processing an attribute tag.
Action: Log a bug against the application. Check the jspx page and fix error.
2-74 Oracle Fusion Middleware Error Messages Reference
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30283: No component associated with UIComponentTag
Cause: JSPException while processing an attribute tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30284: Name attribute cannot be EL bound
Cause: JSPException while processing an attribute tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30285: "componentDef cannot be run as a stand-alone. It must be
included inside a JSF component tree.
Cause: JSPException while processing an componentDef tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30286: componentDef must be included as a child of an
<tr:componentRef>.
Cause: JSPException while processing an componentDef tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30287: tr:componentDef does not support EL on ''var''
Cause: JSPException while processing an componentDef tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30288: "items" must be a simple JSF EL expression
Cause: IllegalArgumentException while processing a forEach/items tags.
Action: Log a bug against the application. Check the jspx page and fix error with
'items'.
ADF_TRINID-00001 to ADF_TRINID-30336 2-75
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30289: "var" cannot be an expression
Cause: IllegalArgumentException while processing a forEach tag.
Action: Log a bug against the application. Check the jspx page and fix error with
'var'.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30290: "varStatus" cannot be an expression
Cause: IllegalArgumentException while processing a forEach tag.
Action: Log a bug against the application. Check the jspx page and fix error with
'varStatus'.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30291: "items" must point to a List or array
Cause: IllegalArgumentException while processing a forEach/items tags.
Action: Log a bug against the application. Check the jspx page and fix error with
'items'.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30292: ''begin'' and ''end'' should be specified if ''items'' is not
specified
Cause: IllegalArgumentException while processing a forEach tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30293: ''var'' and ''varStatus'' must not have same value
Cause: IllegalArgumentException while processing a forEach tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30294: ''begin'' < 0
Cause: IllegalArgumentException while processing a forEach tag.
2-76 Oracle Fusion Middleware Error Messages Reference
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30295: ''step'' < 1
Cause: IllegalArgumentException while processing a forEach tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30296: ResetActionListener must be inside of a UIComponent tag.
Cause: JSPException while processing an resetActionListener tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30297: returnActionListener must be inside of a UIComponent tag.
Cause: JSPException while processing an returnActionListener tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30298: setActionListener must be inside of a UIComponent tag.
Cause: JSPException while processing an setActionListener tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30299: setActionListener's ''to'' attribute must be an EL expression.
Cause: JSPException while processing an setActionListener tag.
Action: Log a bug against the application. Check the jspx page and fix error.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30300: Color code {0} in ''{1}'' does not start with a ''#''
Cause: ParseException processing the chooseColor's colordata.
Action: Log a bug against the application. Start the color code with a '#'.
ADF_TRINID-00001 to ADF_TRINID-30336 2-77
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30301: This method changed to getRenderer(RenderingContext,
UINode)
Cause: IllegalStateException, calling an unsupported method.
Action: Log a bug against the Apache Trinidad framework. Call the correct
method
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30302: Replaced in 2.0 by getIndexedNodeList()
Cause: IllegalStateException, calling an unsupported method.
Action: Log a bug against the Apache Trinidad framework. Call the correct
method
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30303: Instantiation of UIX Components Renderer failed, class {0} not
found.
Cause: Attempting to register a uix component rendered failed.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30304: Reusing role index
Cause: IllegalArgumentException creating NodeRoles.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30305: Attempt to register a null renderer for {0}
Cause: Attempting to register a null renderer.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30306: Only ContextBasedConfiguration is supported
Cause: Attempting to set an invalid configuration type on the RenderingContext.
2-78 Oracle Fusion Middleware Error Messages Reference
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30307: The facet may not be set after the RendererManager has been
assigned.
Cause: IllegalStateException trying to set the facet after the RendererManager has
been assigned.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30308: It is illegal to set children on a {0}
Cause: UnsupportedOperationException trying to replace a child.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30309: It is illegal to add children to a {0}
Cause: UnsupportedOperationException trying to add a child.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30310: It is illegal to remove children from a {0}
Cause: UnsupportedOperationException trying to remove a child.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30311: It is illegal to set children on an
UnmodifiableCompoundNodeList
Cause: UnsupportedOperationException trying to modify a child.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30312: It is illegal to add children to an
UnmodifiableCompoundNodeList
ADF_TRINID-00001 to ADF_TRINID-30336 2-79
Cause: UnsupportedOperationException trying to add a child.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30313: It is illegal to remove children from an
UnmodifiableCompoundNodeList
Cause: UnsupportedOperationException trying to remove a child.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30314: Adapter class doesn't implement BeanDOAdapter
Cause: IllegalArgumentException registered ia BeanAdapter class.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30315: {0} is not an instance of {1}
Cause: IllegalArgumentException trying to attach an instance of the bean class to
the adapter.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30316: leftSideValue is null
Cause: Attempting to create a ComparisonBoundValue caused
IllegalArgumentException.
Action: Log a bug against the appication.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30317: rightSideValue is null
Cause: Attempting to create a ComparisonBoundValue caused
IllegalArgumentException.
Action: Log a bug against the appication.
Level: 2
Type: ERROR
Impact: Logging
2-80 Oracle Fusion Middleware Error Messages Reference
ADF_TRINID-30318: Unknown comparison
Cause: Attempting to create a ComparisonBoundValue caused
IllegalArgumentException.
Action: Log a bug against the appication.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30319: test BoundValue required
Cause: Attempting to create a IfBoundValue with IllegalArgumentException.
Action: Log a bug against the appication.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30320: Null list argument
Cause: NullPointerException in deprecated code.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30321: Null data object argument
Cause: NullPointerException in deprecated code.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30322: No factory registered for {0}
Cause: No renderer factory found in LookAndFeelExtension.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30323: Null baseScorer
Cause: NullPointerException in skinning's NameOnly scorer.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30324: Null baseScore
ADF_TRINID-00001 to ADF_TRINID-30336 2-81
Cause: NullPointerException in skinning's NameOnly scorer.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30325: Facet {0} is not supported on {1}
Cause: IllegalArgumentException returning Skins RendererFactory.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30326: # of keys and values much match
Cause: Error encoding the Javascript event object because the number of keys and
values did not match.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30327: child is not null and not an instance of IconNode
Cause: This error is no longer in the code.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30328: "Null renderers or no renderers passed"
Cause: This error is no longer in the code.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30329: Null child or child not an instance of RendererNode
Cause: This error is no longer in the code.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30330: Null family
Cause: While parsing skin nodes a null skin-family was found.
2-82 Oracle Fusion Middleware Error Messages Reference
Action: Log a bug against the application. Check all trinidad-skins.xml on
classpath and WEB-INF and make sure that the skin-family is set for each skin
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30331: Non Null child and child not an instance of
SkinPropertyNode
Cause: This error is no longer in the code.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30332: RenderingContext has already been created!
Cause: Attempting to create a RenderingContext when it already exists.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30333: {0} not superclass of {1}
Cause: IntrospectionException
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30334: Unexpected reflection exception: {0}
Cause: This error is no longer in the code.
Action: Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30335: Javascript does not support null keys
Cause: IllegalArgumentException while encoding a Map in JavaScript Object
Notation.
Action: Do not use null keys. Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging
ADF_TRINID-30336: Encoding: {0} is unsupported by JVM
ADF_TRINID-00001 to ADF_TRINID-30336 2-83
Cause: IllegalCharsetNameException while enabling byte length validation at the
client side.
Action: Use a supported JVM. Log a bug against the Apache Trinidad framework.
Level: 2
Type: ERROR
Impact: Logging