| Package | Description |
|---|---|
| com.erudika.para |
Default package.
|
| com.erudika.para.core |
Core domain classes for modeling the Para domain space.
|
| com.erudika.para.core.utils |
Core utilities - helper methods for implementing ParaObject and and links.
|
| com.erudika.para.search |
The search module - manages indexing operations and enables search.
|
| com.erudika.para.validation |
Object validation utilities.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AppCreatedListener.onAppCreated(App app)
Code to execute right after app is created.
|
void |
AppDeletedListener.onAppDeleted(App app)
Code to execute right after app is deleted.
|
void |
AppSettingAddedListener.onSettingAdded(App app,
String settingKey,
Object settingValue)
Code to execute right after a setting is added (could be updated or added for the first time).
|
void |
AppSettingRemovedListener.onSettingRemoved(App app,
String settingKey)
Code to execute right after a setting is removed.
|
| Modifier and Type | Method and Description |
|---|---|
App |
App.addAllSettings(Map<String,Object> settings)
Adds all settings to map of app settings and invokes all
AppSettingAddedListeners. |
App |
App.addSetting(String name,
Object value)
Adds a new setting to the map.
|
App |
App.clearSettings()
Clears all app settings and invokes each
AppSettingRemovedListeners. |
App |
App.removeSetting(String name)
Removes a setting from the map.
|
| Modifier and Type | Method and Description |
|---|---|
static Map<String,String> |
ParaObjectUtils.getAllTypes(App app)
Returns a map of all registered types.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
MockSearch.rebuildIndex(DAO dao,
App app,
Pager... pager) |
boolean |
Search.rebuildIndex(DAO dao,
App app,
Pager... pager)
Reads all objects from the database and indexes them into a new index.
|
boolean |
MockSearch.rebuildIndex(DAO dao,
App app,
String destinationIndex,
Pager... pager) |
boolean |
Search.rebuildIndex(DAO dao,
App app,
String destinationIndex,
Pager... pager)
Reads all objects from the database and indexes them into a new index.
|
| Modifier and Type | Method and Description |
|---|---|
static boolean |
ValidationUtils.isValidObject(App app,
ParaObject obj)
Validates objects using Hibernate Validator.
|
static String[] |
ValidationUtils.validateObject(App app,
ParaObject content)
Validates objects.
|
Copyright © 2018 Erudika. All rights reserved.