Home > Contents > Index >
object:checkin
Checks in an object.
Syntax
<object:checkin name="object name" [annotation="annotation"] [checkout="checkout info"] [flush="true|false"]/>Parameters
name (required)
- Specifies the name of the object in the object pool. A previous load command is required to bring the object in to the object pool.
annotation (optional)
- Specifies an annotation description that should be included with the checkin.
checkout (optional)
- Specifies if the object should remain checked out. The default is
false
, and does not leave the object checked out.
flush (optional)
- Specifies that upon success, the object should be flushed from the object pool. A
true
value indicates that object should be flushed. The default is value iffalse
.
Description
This tag checks an object in to storage. The object must have been checked out and loaded in to the object pool previously for this tag to function properly. Successful execution of this tag changes object's revision tracking state from
checked out
tochecked in
.Error Numbers
The possible values of
errno
include:
Value Description -10004 A required parameter is missing. -10005 The requested object is not in the object pool (is not loaded intomemory). -10012 Object is not checked out. -10014 Object already checked out. -10016 Unable to check in specified object.Example
The following example checks in an object called
object1
. The example provides an annotation stating that the object's description has been changed. In addition to values that specify the object is no longer checked out, and to flush the object from the object pool.<object:checkin name="object1" annotation="changed description" checkout="false" flush="true"/>See Also
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.