Uses of Class
com.avoka.fc.core.entity.ServerNode
-
Packages that use ServerNode Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity Provides the SmartForm Manager entity classes.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne. -
-
Uses of ServerNode in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return ServerNode Modifier and Type Method Description ServerNode
ServerNodeDao. getCurrentServerNode()
Return the server node for the current server (by hostname / IP address) that matches onSERVER_TYPE_ADMIN
,SERVER_TYPE_PORTAL
,SERVER_TYPE_RECEIPT
ServerNode
ServerNodeDao. getRequestServerNode()
Return the request's server node, either the Portal or Admin server based on the LocalHost IP Address and the RequestContext.ServerNode
ServerNodeDao. getServerNodeByName(String name)
Return the server node with the specified name.ServerNode
ServerNodeDao. getServerNodeForPK(Object id)
Return the FormServer node for the given primary key.Methods in com.avoka.fc.core.dao that return types with arguments of type ServerNode Modifier and Type Method Description List<ServerNode>
ServerNodeDao. getActiveAdminNodes()
Gets the active admin server nodes.List<ServerNode>
ServerNodeDao. getActivePortalNodes(String groupName)
Gets the active portal nodes.List<ServerNode>
ServerNodeDao. getCachedTransactServerNodesForLocalGroup()
Return the list of PortalServerNodes.List<ServerNode>
ServerNodeDao. getFormCenterServerNodes()
Return the list of SmartForm Manager server nodes.List<ServerNode>
ServerNodeDao. getServerList(String keyword)
Return list of server nodes matching the given search criteria.List<ServerNode>
ServerNodeDao. getServerNodes()
Return the list of server nodes.List<ServerNode>
ServerNodeDao. getTransactNodes()
Gets the Transact server nodes. -
Uses of ServerNode in com.avoka.fc.core.entity
Methods in com.avoka.fc.core.entity that return ServerNode Modifier and Type Method Description ServerNode
Submission. getDeliveryServer()
Deprecated.ServerNode
Submission. getPortalServer()
Deprecated. -
Uses of ServerNode in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type ServerNode Modifier and Type Field Description static org.apache.cayenne.exp.Property<ServerNode>
_RequestLog. FORM_SERVER
Provides the 'FORM_SERVER' property.static org.apache.cayenne.exp.Property<ServerNode>
_RequestLog. PORTAL_SERVER
Provides the 'PORTAL_SERVER' property.static org.apache.cayenne.exp.Property<ServerNode>
_ErrorLog. SERVER_NODE
Provides the 'SERVER_NODE' property.static org.apache.cayenne.exp.Property<ServerNode>
_EventLog. SERVER_NODE
Provides the 'SERVER_NODE' property.static org.apache.cayenne.exp.Property<ServerNode>
_ServiceDefinition. SERVER_NODE
Provides the 'SERVER_NODE' property.Methods in com.avoka.fc.core.entity.auto that return ServerNode Modifier and Type Method Description ServerNode
_RequestLog. getFormServer()
Return the FormServer.ServerNode
_RequestLog. getPortalServer()
Return the PortalServer.ServerNode
_ErrorLog. getServerNode()
Return the ServerNode.ServerNode
_EventLog. getServerNode()
Return the ServerNode.ServerNode
_ServiceDefinition. getServerNode()
Return the ServerNode.Methods in com.avoka.fc.core.entity.auto with parameters of type ServerNode Modifier and Type Method Description void
_RequestLog. setFormServer(ServerNode formServer)
Set the FormServer.void
_RequestLog. setPortalServer(ServerNode portalServer)
Set the PortalServer.void
_ErrorLog. setServerNode(ServerNode serverNode)
Set the ServerNode.void
_EventLog. setServerNode(ServerNode serverNode)
Set the ServerNode.void
_ServiceDefinition. setServerNode(ServerNode serverNode)
Set the ServerNode.
-