|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FormException | |
---|---|
com.silverpeas.form | Defines the interface of all of the objects that represent forms, fields, templates describing forms, and so on. |
com.silverpeas.form.displayers | |
com.silverpeas.form.dummy | |
com.silverpeas.form.fieldType | |
com.silverpeas.form.filter | |
com.silverpeas.form.form | |
com.silverpeas.form.record | |
com.silverpeas.templatedesigner.servlets | |
com.silverpeas.workflow.api.model | |
com.silverpeas.workflow.engine.dataRecord | |
com.silverpeas.workflow.engine.model | |
com.stratelia.webactiv.util.contact.model |
Uses of FormException in com.silverpeas.form |
---|
Subclasses of FormException in com.silverpeas.form | |
---|---|
class |
FormFatalException
Thrown when a fatal error occured in a form component. |
Methods in com.silverpeas.form that throw FormException | |
---|---|
void |
RecordSet.clone(String originalExternalId,
String originalComponentId,
String cloneExternalId,
String cloneComponentId,
Map<String,String> attachmentIds)
Clones the given DataRecord. |
void |
RecordSet.copy(ForeignPK fromPK,
ForeignPK toPK,
RecordTemplate toRecordTemplate,
Map<String,String> oldAndNewFileIds)
|
void |
RecordSet.delete(DataRecord record)
Deletes the given DataRecord and set to null its id. |
void |
RecordSet.delete(String objectId)
|
void |
Form.display(javax.servlet.jsp.JspWriter out,
PagesContext pagesContext)
|
void |
Form.display(javax.servlet.jsp.JspWriter out,
PagesContext pagesContext,
DataRecord record)
Prints the HTML layout of the dataRecord using the RecordTemplate to extract labels and extra informations. |
void |
FieldDisplayer.display(PrintWriter out,
T field,
FieldTemplate template,
PagesContext pagesContext)
Prints the HTML value of the field. |
FieldDisplayer |
TypeManager.getDisplayer(String typeName,
String displayerName)
Returns the named FieldDisplayer of the named field. |
String |
TypeManager.getDisplayerName(String typeName)
Returns the name of the default FieldDisplayer of the named type. |
String[] |
TypeManager.getDisplayerNames(String typeName)
Returns the names of all the FieldDisplayers which can be used with the named type. |
Field |
FieldTemplate.getEmptyField()
Returns an empty Field built on this template. |
Field |
FieldTemplate.getEmptyField(int occurrence)
|
DataRecord |
RecordSet.getEmptyRecord()
Returns an empty DataRecord built on the RecordTemplate. |
DataRecord |
RecordTemplate.getEmptyRecord()
Returns an empty DataRecord built on this template. |
Field |
DataRecord.getField(int fieldIndex)
Returns the field at the index position in the record. |
Field |
DataRecord.getField(String fieldName)
Returns the named field. |
Class<?> |
TypeManager.getFieldImplementation(String typeName)
Returns the class field implementation of the named type. |
int |
RecordTemplate.getFieldIndex(String fieldName)
Returns the Field index of the named field. |
FieldTemplate |
RecordTemplate.getFieldTemplate(String fieldName)
Returns the FieldTemplate of the named field. |
FieldTemplate[] |
RecordTemplate.getFieldTemplates()
Returns all the field templates. |
DataRecord |
RecordSet.getRecord(String id)
Returns the DataRecord with the given id. |
DataRecord |
RecordSet.getRecord(String recordId,
String language)
|
void |
RecordSet.indexRecord(String recordId,
String formName,
FullIndexEntry indexEntry)
Index the given DataRecord into the indexEntry. formName looks like allFields (ie template filename allFields.xml without extension) |
void |
RecordSet.merge(String fromExternalId,
String fromComponentId,
String toExternalId,
String toComponentId,
Map<String,String> attachmentIds)
|
void |
RecordSet.move(ForeignPK fromPK,
ForeignPK toPK,
RecordTemplate toRecordTemplate)
|
void |
RecordSet.save(DataRecord record)
Save the given DataRecord. |
void |
TypeManager.setDisplayer(String displayerClassName,
String typeName,
String displayerName,
boolean defaultDisplayer)
Set the FieldDisplayer class for typeName, displayerName |
void |
TypeManager.setFieldImplementation(String fieldClassName,
String typeName)
Set the implementation class for typeName. |
void |
Field.setNull()
Set to null this field. |
abstract void |
AbstractField.setNull()
|
void |
Field.setObjectValue(Object value)
Set this field value. |
abstract void |
AbstractField.setObjectValue(Object value)
|
void |
Field.setStringValue(String value)
Set this field value from a normalized String value. |
abstract void |
AbstractField.setStringValue(String value)
|
void |
Field.setValue(String value)
Set this field value from a normalized string value. |
abstract void |
AbstractField.setValue(String value)
|
void |
Field.setValue(String value,
String lang)
Set this field value from a local string value. |
abstract void |
AbstractField.setValue(String value,
String lang)
|
List<String> |
Form.update(List<org.apache.commons.fileupload.FileItem> items,
DataRecord record,
PagesContext pagesContext)
Updates the values of the dataRecord using the RecordTemplate to extra control information (readOnly or mandatory status). |
List<String> |
Form.update(List<org.apache.commons.fileupload.FileItem> items,
DataRecord record,
PagesContext pagesContext,
boolean updateWysiwyg)
Updates the values of the dataRecord using the RecordTemplate to extra control information (readOnly or mandatory status). |
List<String> |
FieldDisplayer.update(List<org.apache.commons.fileupload.FileItem> items,
T field,
FieldTemplate template,
PagesContext pagesContext)
Updates the value of the field. |
List<String> |
FieldDisplayer.update(String value,
T field,
FieldTemplate template,
PagesContext pagesContext)
Updates the value of the field. |
static void |
DataRecordUtil.updateFields(String[] fieldNames,
DataRecord updatedRecord,
DataRecord copiedRecord)
Updates the specified fields. |
List<String> |
Form.updateWysiwyg(List<org.apache.commons.fileupload.FileItem> items,
DataRecord record,
PagesContext pagesContext)
Updates the values of the dataRecord using the RecordTemplate to extra control information (readOnly or mandatory status). |
Constructors in com.silverpeas.form that throw FormException | |
---|---|
AbstractForm(RecordTemplate template)
Creates a new form from the specified template of records. |
Uses of FormException in com.silverpeas.form.displayers |
---|
Methods in com.silverpeas.form.displayers that throw FormException | |
---|---|
void |
AccessPathFieldDisplayer.display(PrintWriter out,
AccessPathField field,
FieldTemplate template,
PagesContext PagesContext)
Prints the HTML value of the field. |
void |
DateFieldDisplayer.display(PrintWriter out,
DateField field,
FieldTemplate template,
PagesContext pagesContext)
Prints the HTML value of the field. |
void |
ExplorerFieldDisplayer.display(PrintWriter out,
ExplorerField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
TextDisplayer.display(PrintWriter out,
Field field,
FieldTemplate template,
PagesContext pagesContext)
Prints the HTML value of the field. |
void |
FileFieldDisplayer.display(PrintWriter out,
FileField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
ImageFieldDisplayer.display(PrintWriter out,
FileField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
VideoFieldDisplayer.display(PrintWriter out,
FileField field,
FieldTemplate template,
PagesContext pagesContext)
|
void |
GroupFieldDisplayer.display(PrintWriter out,
GroupField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
JdbcFieldDisplayer.display(PrintWriter out,
JdbcField field,
FieldTemplate template,
PagesContext pagesContext)
Prints the HTML value of the field. |
void |
JdbcRefFieldDisplayer.display(PrintWriter out,
JdbcRefField field,
FieldTemplate template,
PagesContext pagesContext)
|
void |
LdapFieldDisplayer.display(PrintWriter out,
LdapField field,
FieldTemplate template,
PagesContext pagesContext)
Prints the HTML value of the field. |
void |
MultipleUserFieldDisplayer.display(PrintWriter out,
MultipleUserField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
PdcFieldDisplayer.display(PrintWriter out,
PdcField field,
FieldTemplate template,
PagesContext pagesContext)
|
void |
PdcUserFieldDisplayer.display(PrintWriter out,
PdcUserField field,
FieldTemplate template,
PagesContext PagesContext)
Prints the HTML value of the field. |
void |
SequenceFieldDisplayer.display(PrintWriter out,
SequenceField field,
FieldTemplate template,
PagesContext pagesContext)
Prints the HTML value of the field. |
void |
PdcPositionsFieldDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext context)
Prints the HTML value of the field. |
void |
CheckBoxDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext PagesContext)
Prints the HTML value of the field. |
void |
TextFieldDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
WysiwygFCKFieldDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
UrlFieldDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
UniqueIdFieldDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext pageContext)
|
void |
EmailFieldDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
MapFieldDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
RadioButtonDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
TimeFieldDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
ListBoxFieldDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext PagesContext)
Prints the HTML value of the field. |
void |
TextAreaFieldDisplayer.display(PrintWriter out,
TextField field,
FieldTemplate template,
PagesContext PagesContext)
Prints the HTML value of the field. |
void |
UserFieldDisplayer.display(PrintWriter out,
UserField field,
FieldTemplate template,
PagesContext pageContext)
Prints the HTML value of the field. |
void |
WysiwygFCKFieldDisplayer.duplicateContent(Field field,
FieldTemplate template,
PagesContext pageContext,
String newObjectId)
|
List<String> |
ExplorerFieldDisplayer.update(List<org.apache.commons.fileupload.FileItem> items,
ExplorerField field,
FieldTemplate template,
PagesContext pageContext)
|
List<String> |
AbstractFileFieldDisplayer.update(List<org.apache.commons.fileupload.FileItem> items,
FileField field,
FieldTemplate template,
PagesContext pageContext)
|
List<String> |
GroupFieldDisplayer.update(List<org.apache.commons.fileupload.FileItem> items,
GroupField field,
FieldTemplate template,
PagesContext pageContext)
|
List<String> |
MultipleUserFieldDisplayer.update(List<org.apache.commons.fileupload.FileItem> items,
MultipleUserField field,
FieldTemplate template,
PagesContext pageContext)
|
List<String> |
PdcPositionsFieldDisplayer.update(List<org.apache.commons.fileupload.FileItem> items,
TextField field,
FieldTemplate template,
PagesContext pageContext)
|
List<String> |
CheckBoxDisplayer.update(List<org.apache.commons.fileupload.FileItem> items,
TextField field,
FieldTemplate template,
PagesContext pageContext)
|
List<String> |
AbstractFieldDisplayer.update(List<org.apache.commons.fileupload.FileItem> items,
T field,
FieldTemplate template,
PagesContext pageContext)
|
List<String> |
AccessPathFieldDisplayer.update(String newValue,
AccessPathField field,
FieldTemplate template,
PagesContext PagesContext)
Updates the value of the field. |
List<String> |
DateFieldDisplayer.update(String newValue,
DateField field,
FieldTemplate template,
PagesContext pagesContext)
Updates the value of the field. |
List<String> |
ExplorerFieldDisplayer.update(String newId,
ExplorerField field,
FieldTemplate template,
PagesContext pageContext)
|
List<String> |
TextDisplayer.update(String newValue,
Field field,
FieldTemplate template,
PagesContext PagesContext)
Updates the value of the field. |
List<String> |
AbstractFileFieldDisplayer.update(String attachmentId,
FileField field,
FieldTemplate template,
PagesContext pagesContext)
|
List<String> |
GroupFieldDisplayer.update(String newId,
GroupField field,
FieldTemplate template,
PagesContext pagesContext)
|
List<String> |
JdbcFieldDisplayer.update(String newValue,
JdbcField field,
FieldTemplate template,
PagesContext pagesContext)
Updates the value of the field. |
List<String> |
JdbcRefFieldDisplayer.update(String value,
JdbcRefField field,
FieldTemplate template,
PagesContext pagesContext)
|
List<String> |
LdapFieldDisplayer.update(String newValue,
LdapField field,
FieldTemplate template,
PagesContext pagesContext)
Updates the value of the field. |
List<String> |
MultipleUserFieldDisplayer.update(String newIds,
MultipleUserField field,
FieldTemplate template,
PagesContext pagesContext)
Updates the value of the field. |
List<String> |
PdcFieldDisplayer.update(String value,
PdcField field,
FieldTemplate template,
PagesContext pagesContext)
|
List<String> |
PdcUserFieldDisplayer.update(String newId,
PdcUserField field,
FieldTemplate template,
PagesContext pagesContext)
Updates the value of the field. |
List<String> |
SequenceFieldDisplayer.update(String value,
SequenceField field,
FieldTemplate template,
PagesContext pagesContext)
Updates the value of the field. |
List<String> |
PdcPositionsFieldDisplayer.update(String values,
TextField field,
FieldTemplate template,
PagesContext PagesContext)
|
List<String> |
AbstractTextFieldDisplayer.update(String newValue,
TextField field,
FieldTemplate template,
PagesContext PagesContext)
|
List<String> |
CheckBoxDisplayer.update(String values,
TextField field,
FieldTemplate template,
PagesContext PagesContext)
|
List<String> |
WysiwygFCKFieldDisplayer.update(String newValue,
TextField field,
FieldTemplate template,
PagesContext pageContext)
Updates the value of the field. |
List<String> |
UniqueIdFieldDisplayer.update(String newValue,
TextField field,
FieldTemplate template,
PagesContext pagesContext)
|
List<String> |
RadioButtonDisplayer.update(String newValue,
TextField field,
FieldTemplate template,
PagesContext PagesContext)
Updates the value of the field. |
List<String> |
TimeFieldDisplayer.update(String newValue,
TextField field,
FieldTemplate template,
PagesContext PagesContext)
|
List<String> |
ListBoxFieldDisplayer.update(String newValue,
TextField field,
FieldTemplate template,
PagesContext PagesContext)
|
List<String> |
UserFieldDisplayer.update(String newId,
UserField field,
FieldTemplate template,
PagesContext pageContext)
|
Uses of FormException in com.silverpeas.form.dummy |
---|
Methods in com.silverpeas.form.dummy that throw FormException | |
---|---|
void |
DummyRecordSet.clone(String originalExternalId,
String originalComponentId,
String cloneExternalId,
String cloneComponentId,
Map<String,String> attachmentIds)
|
void |
DummyRecordSet.copy(ForeignPK fromPK,
ForeignPK toPK,
RecordTemplate toRecordTemplate,
Map<String,String> attachmentIds)
|
void |
DummyRecordSet.delete(DataRecord record)
This dummy record set simply do nothing. |
void |
DummyRecordSet.delete(String objectId)
|
Field |
DummyFieldTemplate.getEmptyField(int occurrence)
|
DataRecord |
DummyRecordSet.getEmptyRecord()
Returns an empty DataRecord built on the RecordTemplate. |
DataRecord |
DummyRecordTemplate.getEmptyRecord()
Returns an empty DataRecord built on this template. |
int |
DummyRecordTemplate.getFieldIndex(String fieldName)
Returns the field index of the named field. |
FieldTemplate |
DummyRecordTemplate.getFieldTemplate(String fieldName)
Returns the FieldTemplate of the named field. |
DataRecord |
DummyRecordSet.getRecord(String recordId)
This dummy record set always return a dummy record. |
DataRecord |
DummyRecordSet.getRecord(String recordId,
String language)
|
void |
DummyRecordSet.indexRecord(String recordId,
String formName,
FullIndexEntry indexEntry)
|
void |
DummyRecordSet.insert(DataRecord record)
This dummy record set simply do nothing. |
void |
DummyRecordSet.merge(String fromExternalId,
String fromComponentId,
String toExternalId,
String toComponentId,
Map<String,String> attachmentIds)
|
void |
DummyRecordSet.move(ForeignPK fromPK,
ForeignPK toPK,
RecordTemplate toRecordTemplate)
|
void |
DummyRecordSet.save(DataRecord record)
This dummy record set simply do nothing. |
void |
DummyRecordSet.update(DataRecord record)
This dummy record set simply do nothing. |
Constructors in com.silverpeas.form.dummy that throw FormException | |
---|---|
DummyRecordSet(RecordTemplate template)
|
|
DummyRecordTemplate(RecordTemplate template)
|
Uses of FormException in com.silverpeas.form.fieldType |
---|
Methods in com.silverpeas.form.fieldType that throw FormException | |
---|---|
void |
LdapField.bindLdap(com.novell.ldap.LDAPConnection ldapConnection,
String version,
String distinguishedName,
byte[] password)
|
Connection |
JdbcField.connectJdbc(String driverName,
String url,
String login,
String password)
|
com.novell.ldap.LDAPConnection |
LdapField.connectLdap(String host,
String port)
|
void |
LdapField.disconnectLdap(com.novell.ldap.LDAPConnection connection)
|
Collection<String> |
LdapField.searchLdap(com.novell.ldap.LDAPConnection ldapConnection,
String baseDn,
String scope,
String filter,
String attribute,
boolean typesOnly,
String currentUserId)
|
Collection<String> |
JdbcField.selectSql(Connection jdbcConnection,
String query,
String currentUserId)
|
void |
LdapField.setConstraintLdap(com.novell.ldap.LDAPConnection ldapConnection,
String maxResultDisplayed)
|
void |
PdcField.setNull()
|
void |
ExplorerField.setNull()
Set to null this field. |
void |
DateField.setNull()
|
void |
MultipleUserField.setNull()
Set to null this field. |
void |
JdbcRefField.setNull()
|
void |
TextField.setNull()
Set to null this field. |
void |
PdcUserField.setNull()
Set to null this field. |
void |
GroupField.setNull()
Set to null this field. |
void |
UserField.setNull()
Set to null this field. |
void |
PdcField.setObjectValue(Object value)
|
void |
ExplorerField.setObjectValue(Object value)
Set node referenced by this field. |
void |
DateField.setObjectValue(Object value)
Set this field value. |
void |
MultipleUserField.setObjectValue(Object value)
Set user referenced by this field. |
void |
JdbcRefField.setObjectValue(Object value)
|
void |
TextField.setObjectValue(Object value)
Set this field value. |
void |
PdcUserField.setObjectValue(Object value)
Set userCardIds referenced by this field. |
void |
GroupField.setObjectValue(Object value)
Set user referenced by this field. |
void |
UserField.setObjectValue(Object value)
Set user referenced by this field. |
void |
PdcField.setStringValue(String value)
|
void |
PdcField.setValue(String value)
|
void |
ExplorerField.setValue(String value)
Does nothing since a user reference can't be computed from a user name. |
void |
DateField.setValue(String value)
|
void |
MultipleUserField.setValue(String value)
Does nothing since a user reference can't be computed from a user name. |
void |
JdbcRefField.setValue(String value)
|
void |
TextField.setValue(String value)
Set this field value from a local string value. |
void |
PdcUserField.setValue(String value)
Does nothing since a user reference can't be computed from a user name. |
void |
GroupField.setValue(String value)
Does nothing since a group reference can't be computed from a group name. |
void |
UserField.setValue(String value)
Does nothing since a user reference can't be computed from a user name. |
void |
PdcField.setValue(String value,
String lang)
|
void |
ExplorerField.setValue(String value,
String language)
Does nothing since a user reference can't be computed from a user name. |
void |
DateField.setValue(String value,
String language)
|
void |
MultipleUserField.setValue(String value,
String language)
Does nothing since a user reference can't be computed from a user name. |
void |
JdbcRefField.setValue(String value,
String lang)
|
void |
TextField.setValue(String value,
String language)
Set this field value from a local string value. |
void |
PdcUserField.setValue(String value,
String language)
Does nothing since a user reference can't be computed from a user name. |
void |
GroupField.setValue(String value,
String language)
Does nothing since a group reference can't be computed from a group name. |
void |
UserField.setValue(String value,
String language)
Does nothing since a user reference can't be computed from a user name. |
Uses of FormException in com.silverpeas.form.filter |
---|
Methods in com.silverpeas.form.filter that throw FormException | |
---|---|
RecordFilter |
FilterManager.buildRecordFilter(DataRecord criteriaRecord)
Builds a RecordFilter from the criteria record (which must be built with the criterieTemplate) |
List<DataRecord> |
FilterManager.filter(DataRecord criteria,
List<DataRecord> filtered)
Filters the given list of DataRecord using the specified criteria. |
Form |
FilterManager.getCriteriaForm()
Returns a Form which can be used to select criteria values. |
RecordTemplate |
FilterManager.getCriteriaTemplate()
Returns a RecordTemplate which can be used to select criteria values. |
DataRecord |
FilterManager.getEmptyCriteriaRecord()
Returns an empty criteria record. |
boolean |
SimpleRecordFilter.match(DataRecord testedRecord)
Returns true if the fields of the specified record match all the field filter of this Filter. |
boolean |
RecordFilter.match(DataRecord testedRecord)
Returns true if the given record match this Filter criteria. |
boolean |
FieldFilter.match(Field testedField)
Returns true if the given field match this Filter criteria. |
Uses of FormException in com.silverpeas.form.form |
---|
Constructors in com.silverpeas.form.form that throw FormException | |
---|---|
HtmlForm(RecordTemplate template)
Creates a new HTML form from the specified template of records. |
|
XmlForm(RecordTemplate template)
|
|
XmlForm(RecordTemplate template,
boolean viewForm)
|
|
XmlSearchForm(RecordTemplate template)
|
Uses of FormException in com.silverpeas.form.record |
---|
Methods in com.silverpeas.form.record that throw FormException | |
---|---|
void |
GenericRecordSet.clone(String originalExternalId,
String originalComponentId,
String cloneExternalId,
String cloneComponentId,
Map<String,String> attachmentIds)
|
void |
GenericRecordSetManager.cloneRecord(IdentifiedRecordTemplate templateFrom,
String objectIdFrom,
IdentifiedRecordTemplate templateTo,
String objectIdTo,
Map<String,String> fileIds)
|
void |
GenericRecordSet.copy(ForeignPK fromPK,
ForeignPK toPK,
RecordTemplate toRecordTemplate,
Map<String,String> oldAndNewFileIds)
|
GenericRecordSet |
GenericRecordSetManager.createRecordSet(String externalId,
RecordTemplate template)
Build and return a new record set. |
GenericRecordSet |
GenericRecordSetManager.createRecordSet(String externalId,
RecordTemplate template,
String templateName,
boolean encrypted)
|
void |
GenericRecordSet.delete(DataRecord record)
Deletes the given DataRecord and set to null its id. |
void |
GenericRecordSet.delete(String objectId)
|
void |
GenericRecordSetManager.deleteRecord(IdentifiedRecordTemplate template,
DataRecord deletedRecord)
Delete the DataRecord registered by the pair (templateId, recordId). |
protected List<RecordRow> |
GenericRecordSetManager.getAllRecordsOfTemplate(String templateName)
|
Field |
GenericFieldTemplate.getEmptyField()
Returns an empty Field built on this template. |
Field |
GenericFieldTemplate.getEmptyField(int occurrence)
|
DataRecord |
IdentifiedRecordTemplate.getEmptyRecord()
Returns an empty DataRecord built on this template. |
DataRecord |
GenericRecordSet.getEmptyRecord()
Returns an empty DataRecord built on the RecordTemplate. |
DataRecord |
GenericRecordTemplate.getEmptyRecord()
Returns an empty DataRecord built on this template. |
Field |
GenericDataRecord.getField(int fieldIndex)
Returns the field at the index position in the record. |
Field |
GenericDataRecord.getField(String fieldName)
Returns the named field. |
int |
IdentifiedRecordTemplate.getFieldIndex(String fieldName)
Returns the field index of the named field. |
int |
GenericRecordTemplate.getFieldIndex(String fieldName)
Returns the field index of the named field. |
FieldTemplate |
IdentifiedRecordTemplate.getFieldTemplate(String fieldName)
Returns the FieldTemplate of the named field. |
FieldTemplate |
GenericRecordTemplate.getFieldTemplate(String fieldName)
Returns the FieldTemplate of the named field. |
FieldTemplate[] |
IdentifiedRecordTemplate.getFieldTemplates()
Returns all the field templates. |
List<String> |
GenericRecordSetManager.getLanguagesOfRecord(IdentifiedRecordTemplate template,
String externalId)
|
String |
GenericRecordSetManager.getRawValue(String templateExternalId,
String recordExternalId,
String fieldName)
Get value of a field record directly from database. |
DataRecord |
GenericRecordSetManager.getRecord(IdentifiedRecordTemplate template,
String objectId)
Return the DataRecord registered by the pair (templateId, recordId). |
DataRecord |
GenericRecordSetManager.getRecord(IdentifiedRecordTemplate template,
String objectId,
String language)
Return the DataRecord registered by the tuple (templateId, objectId, language). |
DataRecord |
GenericRecordSet.getRecord(String objectId)
Returns the DataRecord with the given id. |
DataRecord |
GenericRecordSet.getRecord(String objectId,
String language)
Returns the DataRecord with the given id. |
RecordSet |
GenericRecordSetManager.getRecordSet(String externalId)
Return the record set known be its external id. |
void |
GenericRecordSet.indexRecord(String recordId,
String formName,
FullIndexEntry indexEntry)
|
void |
GenericRecordSetManager.insertRecord(IdentifiedRecordTemplate template,
DataRecord insertedRecord)
Register the DataRecord with the pair (templateId, recordId). |
void |
GenericRecordSet.merge(String fromExternalId,
String fromComponentId,
String toExternalId,
String toComponentId,
Map<String,String> attachmentIds)
|
void |
GenericRecordSet.move(ForeignPK fromPK,
ForeignPK toPK,
RecordTemplate toRecordTemplate)
|
void |
GenericRecordSetManager.moveRecord(int recordId,
IdentifiedRecordTemplate templateTo)
|
void |
GenericRecordSetManager.removeRecordSet(String externalId)
Remove the record set known by its external id. |
void |
GenericRecordSet.save(DataRecord record)
Save the given DataRecord. |
void |
GenericFieldTemplate.setTypeName(String typeName)
set the type name of the described field. |
void |
GenericRecordSetManager.updateRecord(IdentifiedRecordTemplate template,
DataRecord updatedRecord)
Save the DataRecord registered by the pair (templateId, recordId). |
Constructors in com.silverpeas.form.record that throw FormException | |
---|---|
GenericDataRecord(RecordTemplate template)
A GenericDataRecord is built from a RecordTemplate. |
|
GenericFieldTemplate(String fieldName,
Class fieldImpl)
Builds a GenericFieldTemplate from a field name and a field implementation. |
|
GenericFieldTemplate(String fieldName,
String typeName)
Builds a GenericFieldTemplate from a field name and a field type name. |
Uses of FormException in com.silverpeas.templatedesigner.servlets |
---|
Methods in com.silverpeas.templatedesigner.servlets that throw FormException | |
---|---|
static GenericFieldTemplate |
TemplateDesignerRequestRouter.request2Field(javax.servlet.http.HttpServletRequest request)
|
Uses of FormException in com.silverpeas.workflow.api.model |
---|
Methods in com.silverpeas.workflow.api.model that throw FormException | |
---|---|
DataRecord |
Form.getDefaultRecord(String role,
String lang,
DataRecord data)
Converts this object in a DataRecord object |
Uses of FormException in com.silverpeas.workflow.engine.dataRecord |
---|
Methods in com.silverpeas.workflow.engine.dataRecord that throw FormException | |
---|---|
Field |
ProcessInstanceFieldTemplate.getEmptyField()
Throws an illegal call exception, since an empty field can't be built from this template. |
Field |
ProcessInstanceFieldTemplate.getEmptyField(int occurrence)
|
DataRecord |
ProcessInstanceRowTemplate.getEmptyRecord()
Throws an illegal call exception, since an empty DataRecord can't be built from this template. |
DataRecord |
ProcessInstanceRecordTemplate.getEmptyRecord()
Throws an illegal call exception, since an empty DataRecord can't be built from this template. |
Field |
LazyProcessInstanceDataRecord.getField(int fieldIndex)
Returns the field at the index position in the record. |
Field |
AbstractProcessInstanceDataRecord.getField(int fieldIndex)
|
Field |
ProcessInstanceRowRecord.getField(int fieldIndex)
Returns the field at the index position in the record. |
Field |
ProcessInstanceDataRecord.getField(int fieldIndex)
Returns the field at the index position in the record. |
abstract Field |
ProcessInstanceFieldTemplate.getField(ProcessInstance instance)
Returns a field built from this template and filled from the given process instance. |
Field |
UserInfoTemplate.getField(ProcessInstance instance)
Returns a field built from this template and filled from the given process instance. |
Field |
ItemTemplate.getField(ProcessInstance instance)
Returns a field built from this template and filled from the given process instance. |
Field |
LazyProcessInstanceDataRecord.getField(String fieldName)
Returns the named field. |
Field |
AbstractProcessInstanceDataRecord.getField(String fieldName)
|
Field |
ProcessInstanceRowRecord.getField(String fieldName)
Returns the named field. |
Field |
ProcessInstanceDataRecord.getField(String fieldName)
Returns the named field. |
int |
ProcessInstanceRowTemplate.getFieldIndex(String fieldName)
Returns the Field index of the named field. |
int |
ProcessInstanceRecordTemplate.getFieldIndex(String fieldName)
Returns the Field index of the named field. |
FieldTemplate |
ProcessInstanceRowTemplate.getFieldTemplate(int fieldIndex)
Returns the FieldTemplate at the given position |
FieldTemplate |
ProcessInstanceRecordTemplate.getFieldTemplate(int fieldIndex)
Returns the FieldTemplate at the given position |
FieldTemplate |
ProcessInstanceRowTemplate.getFieldTemplate(String fieldName)
Returns the FieldTemplate of the named field. |
FieldTemplate |
ProcessInstanceRecordTemplate.getFieldTemplate(String fieldName)
Returns the FieldTemplate of the named field. |
FieldTemplate[] |
ProcessInstanceRowTemplate.getFieldTemplates()
Returns all the field templates. |
FieldTemplate[] |
ProcessInstanceRecordTemplate.getFieldTemplates()
Returns all the field templates. |
Uses of FormException in com.silverpeas.workflow.engine.model |
---|
Methods in com.silverpeas.workflow.engine.model that throw FormException | |
---|---|
DataRecord |
FormImpl.getDefaultRecord(String role,
String lang,
DataRecord data)
Converts this object in a DataRecord object |
Uses of FormException in com.stratelia.webactiv.util.contact.model |
---|
Methods in com.stratelia.webactiv.util.contact.model that throw FormException | |
---|---|
void |
CompleteContact.removeForm()
|
void |
CompleteContact.saveForm()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |