list-persistence-types

DRAFT


Previous Next Contents

list-persistence-types

lists registered persistence types for HTTP sessions and SFSB instances

Synopsis

asadmin [asadmin-options] list-persistence-types [--help]
--type={web|ejb}

Description

The list-persistence-types subcommand lists registered persistence types for HTTP sessions and stateful session bean (SFSB) instances. The built-in persistence types are memory, file, and replicated. The memory type does not apply to SFSB instances.

Other persistence types can be added using the StrategyBuilder class. For more information, see the GlassFish Server Open Source Edition Add-On Component Development Guide.

To set the persistence type for HTTP sessions, use the set subcommand to set the persistence-type attribute. For example:

asadmin> set c1-config.availability-service.web-container-availability.persistence-type=file

To set the persistence type for SFSB instances without availability enabled, use the set subcommand to set the sfsb-persistence-type attribute. For example:

asadmin> set c1-config.availability-service.ejb-container-availability.sfsb-persistence-type=file

To set the persistence type for SFSB instances with availability enabled, use the set subcommand to set the sfsb-ha-persistence-type attribute. For example:

asadmin> set
c1-config.availability-service.ejb-container-availability.sfsb-ha-persistence-type=replicated

This subcommand is supported in remote mode only.

Options

asadmin-options

Options for the asadmin utility. For information about these options, see the asadmin(1M) help page.

--help
-?

Displays the help text for the subcommand.

--type

Specifies the type of sessions for which persistence types are listed. Allowed values are as follows:

  • web — Lists persistence types for HTTP sessions.

  • ejb — Lists persistence types for SFSB instances.

Examples

Example 1   Listing Persistence Types for HTTP Sessions

This example lists persistence types for HTTP sessions.

asadmin> list-persistence-types --type=web
memory
file
replicated

Command list-persistence-types executed successfully.

Exit Status

0

command executed successfully

1

error in executing the command

See Also


Previous Next Contents
Eclipse Foundation Logo  Copyright © 2019, Oracle and/or its affiliates. All rights reserved.

DRAFT