java.lang.Object
com.zeroc.IceGrid.DbEnvDescriptor
- All Implemented Interfaces:
Serializable
,Cloneable
A Freeze database environment descriptor (deprecated, no longer used).
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe home of the database environment.The description of this database environment.The name of the database environment.The configuration properties of the database environment. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs aDbEnvDescriptor
.DbEnvDescriptor
(String name, String description, String dbHome, List<PropertyDescriptor> properties) Constructs aDbEnvDescriptor
with values for all its fields. -
Method Summary
Modifier and TypeMethodDescriptionclone()
boolean
int
hashCode()
static DbEnvDescriptor
ice_read
(InputStream istr) Unmarshals aDbEnvDescriptor
from an input stream.static Optional<DbEnvDescriptor>
ice_read
(InputStream istr, int tag) Unmarshals an optionalDbEnvDescriptor
from an input stream.void
ice_readMembers
(InputStream istr) Unmarshals and sets this object's fields from an input stream.static void
ice_write
(OutputStream ostr, int tag, DbEnvDescriptor v) Marshals an optionalDbEnvDescriptor
into an output stream.static void
ice_write
(OutputStream ostr, int tag, Optional<DbEnvDescriptor> v) Marshals an optionalDbEnvDescriptor
into an output stream.static void
ice_write
(OutputStream ostr, DbEnvDescriptor v) Marshals aDbEnvDescriptor
into an output stream.void
ice_writeMembers
(OutputStream ostr) Marshals this object's fields into an output stream.
-
Field Details
-
name
The name of the database environment. -
description
The description of this database environment. -
dbHome
The home of the database environment. -
properties
The configuration properties of the database environment.
-
-
Constructor Details
-
DbEnvDescriptor
public DbEnvDescriptor()Constructs aDbEnvDescriptor
. -
DbEnvDescriptor
public DbEnvDescriptor(String name, String description, String dbHome, List<PropertyDescriptor> properties) Constructs aDbEnvDescriptor
with values for all its fields.- Parameters:
name
- The name of the database environment.description
- The description of this database environment.dbHome
- The home of the database environment.properties
- The configuration properties of the database environment.
-
-
Method Details
-
equals
-
hashCode
public int hashCode() -
clone
-
ice_writeMembers
Marshals this object's fields into an output stream.- Parameters:
ostr
- the output stream
-
ice_readMembers
Unmarshals and sets this object's fields from an input stream.- Parameters:
istr
- the input stream
-
ice_write
Marshals aDbEnvDescriptor
into an output stream.- Parameters:
ostr
- the output streamv
- theDbEnvDescriptor
to marshal; can be null
-
ice_read
Unmarshals aDbEnvDescriptor
from an input stream.- Parameters:
istr
- the input stream- Returns:
- the unmarshaled
DbEnvDescriptor
-
ice_write
Marshals an optionalDbEnvDescriptor
into an output stream.- Parameters:
ostr
- the output streamtag
- the tagv
- the value to marshal
-
ice_write
Marshals an optionalDbEnvDescriptor
into an output stream.- Parameters:
ostr
- the output streamtag
- the tagv
- the value to marshal
-
ice_read
Unmarshals an optionalDbEnvDescriptor
from an input stream.- Parameters:
istr
- the input streamtag
- the tag- Returns:
- the unmarshaled value
-