

Public Member Functions | |
| List | getOsmAgentFields (OsmAgentField osmAgentField) |
| OsmAgentField | getOsmAgentField (final String idnAgtfield) |
| void | saveOsmAgentField (OsmAgentField osmAgentField) |
| void | removeOsmAgentField (final String idnAgtfield) |
| List | findByOsmAgent (final OsmAgent osmAgent) |
| void | setDao (Dao dao) |
| List | getObjects (Class clazz) |
| Object | getObject (Class clazz, Serializable id) |
| void | saveObject (Object o) |
| void | removeObject (Class clazz, Serializable id) |
Definition at line 31 of file OsmAgentFieldManager.java.
| List org.osmius.service.OsmAgentFieldManager.getOsmAgentFields | ( | OsmAgentField | osmAgentField | ) |
Gets all the agent fields
| osmAgentField | The agent field to retrieve the information, can be null |
| OsmAgentField org.osmius.service.OsmAgentFieldManager.getOsmAgentField | ( | final String | idnAgtfield | ) |
Gets an agent field information
| idnAgtfield | The agent field ID |
Implemented in org.osmius.service.impl.OsmAgentFieldManagerImpl.
| void org.osmius.service.OsmAgentFieldManager.saveOsmAgentField | ( | OsmAgentField | osmAgentField | ) |
Saves the fields of a new agent to the database
| osmAgentField | The agent fields to be save |
Implemented in org.osmius.service.impl.OsmAgentFieldManagerImpl.
| void org.osmius.service.OsmAgentFieldManager.removeOsmAgentField | ( | final String | idnAgtfield | ) |
remove the fields of an agent from the database
| idnAgtfield | The agent field ID to be remove |
Implemented in org.osmius.service.impl.OsmAgentFieldManagerImpl.
| List org.osmius.service.OsmAgentFieldManager.findByOsmAgent | ( | final OsmAgent | osmAgent | ) |
Gets the agent field information for a given agent
| osmAgent | The agent to get the fields |
Implemented in org.osmius.service.impl.OsmAgentFieldManagerImpl.
| void org.osmius.service.Manager.setDao | ( | Dao | dao | ) | [inherited] |
Expose the setDao method for testing purposes
| dao |
Implemented in org.osmius.service.impl.BaseManager.
| List org.osmius.service.Manager.getObjects | ( | Class | clazz | ) | [inherited] |
Generic method used to get a all objects of a particular type.
| clazz | the type of objects |
Implemented in org.osmius.service.impl.BaseManager.
| Object org.osmius.service.Manager.getObject | ( | Class | clazz, | |
| Serializable | id | |||
| ) | [inherited] |
Generic method to get an object based on class and identifier.
| clazz | model class to lookup | |
| id | the identifier (primary key) of the class |
Implemented in org.osmius.service.impl.BaseManager.
| void org.osmius.service.Manager.saveObject | ( | Object | o | ) | [inherited] |
Generic method to save an object.
| o | the object to save |
Implemented in org.osmius.service.impl.BaseManager.
| void org.osmius.service.Manager.removeObject | ( | Class | clazz, | |
| Serializable | id | |||
| ) | [inherited] |
Generic method to delete an object based on class and id
| clazz | model class to lookup | |
| id | the identifier of the class |
Implemented in org.osmius.service.impl.BaseManager.
1.5.1