public class EPubHomes
extends atg.datamodel.Homes
This is the factory for obtaining pointers to this package's Home classes. An instance of the factory may be obtained by calling the static method Homes.getHomes(java.lang.String), passing in a String identifying the desired instance. The following table lists the String identifiers that may be passed in, and the resulting instances:
| Home Name | Homes Instance |
|---|---|
| EPublishing/repository | An instance of EPubHomes that returns Home instances for dealing with repository-backed instances. |
| not specified | An instance of EPubHomes that returns Home instances for dealing with repository-backed instances. |
| EPublishing/bean | An instance of EPubHomes that returns Home instances for dealing with Java Bean instances. |
The following code demonstrates how an application may obtain an instance of the home factory for dealing with repository instances:
EPublishing/bean homes = (EPublishing/bean)Homes.getHomes("EPublishing/repository");
| Constructor and Description |
|---|
EPubHomes() |
| Modifier and Type | Method and Description |
|---|---|
AgentDefHome |
getAgentDefHome()
Returns an instance of the Home for
AgentDef instances. |
DeploymentLogHome |
getDeploymentLogHome()
Returns an instance of the Home for
DeploymentLog instances. |
HistoryHome |
getHistoryHome()
Returns an instance of the Home for
History instances. |
atg.epub.project.OnlineTableMappingHome |
getOnlineTableMappingHome()
Returns an instance of the Home for
OnlineTableMapping instances. |
PendingDeploymentHome |
getPendingDeploymentHome()
Returns an instance of the Home for
PendingDeployment instances. |
ProcessHome |
getProcessHome()
Returns an instance of the Home for
Process instances. |
ProcessTaskInfoHome |
getProcessTaskInfoHome()
Returns an instance of the Home for
ProcessTaskInfo instances. |
ProjectHome |
getProjectHome()
Returns an instance of the Home for
Project instances. |
ReadOnlyProjectHome |
getReadOnlyProjectHome()
Returns an instance of the Home for
ReadOnlyProject instances. |
atg.epub.project.SwitchTableMappingHome |
getSwitchTableMappingHome()
Returns an instance of the Home for
SwitchTableMapping instances. |
atg.epub.project.TableMappingHome |
getTableMappingHome()
Returns an instance of the Home for
TableMapping instances. |
TargetDefHome |
getTargetDefHome()
Returns an instance of the Home for
TargetDef instances. |
TopologyDefHome |
getTopologyDefHome()
Returns an instance of the Home for
TopologyDef instances. |
TransportDefHome |
getTransportDefHome()
Returns an instance of the Home for
TransportDef instances. |
static void |
initialize()
This must be called before any of the home or instance objects in this package may be used, or before an instance of this class can be obtained from the
Homes.getHomes(java.lang.String) method. |
public static void initialize()
throws atg.datamodel.DataModelException
Homes.getHomes(java.lang.String) method. But rather than calling this method directly, applications should call InitializeDataModel.initialize(), which will initialize all of the data types in a single method call.atg.datamodel.DataModelExceptionpublic ProcessHome getProcessHome()
Returns an instance of the Home for Process instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public ProjectHome getProjectHome()
Returns an instance of the Home for Project instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public ReadOnlyProjectHome getReadOnlyProjectHome()
Returns an instance of the Home for ReadOnlyProject instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public ProcessTaskInfoHome getProcessTaskInfoHome()
Returns an instance of the Home for ProcessTaskInfo instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public HistoryHome getHistoryHome()
Returns an instance of the Home for History instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public PendingDeploymentHome getPendingDeploymentHome()
Returns an instance of the Home for PendingDeployment instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public DeploymentLogHome getDeploymentLogHome()
Returns an instance of the Home for DeploymentLog instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public TopologyDefHome getTopologyDefHome()
Returns an instance of the Home for TopologyDef instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public TargetDefHome getTargetDefHome()
Returns an instance of the Home for TargetDef instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public AgentDefHome getAgentDefHome()
Returns an instance of the Home for AgentDef instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public TransportDefHome getTransportDefHome()
Returns an instance of the Home for TransportDef instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public atg.epub.project.TableMappingHome getTableMappingHome()
Returns an instance of the Home for TableMapping instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public atg.epub.project.OnlineTableMappingHome getOnlineTableMappingHome()
Returns an instance of the Home for OnlineTableMapping instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.
public atg.epub.project.SwitchTableMappingHome getSwitchTableMappingHome()
Returns an instance of the Home for SwitchTableMapping instances. The resulting Home will deal with repository or bean instances, depending on how this factory was obtained from the Homes.getHomes(java.lang.String) method.