java.lang.Object
com.zeroc.IceGrid.ApplicationInfo
- All Implemented Interfaces:
Serializable
,Cloneable
Information about an IceGrid application.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionlong
The creation time.The user who created the application.The application descriptor.int
The application revision number.long
The last update time.The user who updated the application.Unique application identifier. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs aApplicationInfo
.ApplicationInfo
(String uuid, long createTime, String createUser, long updateTime, String updateUser, int revision, ApplicationDescriptor descriptor) Constructs aApplicationInfo
with values for all its fields. -
Method Summary
Modifier and TypeMethodDescriptionclone()
boolean
int
hashCode()
static ApplicationInfo
ice_read
(InputStream istr) Unmarshals anApplicationInfo
from an input stream.static Optional<ApplicationInfo>
ice_read
(InputStream istr, int tag) Unmarshals an optionalApplicationInfo
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, ApplicationInfo v) Marshals an optionalApplicationInfo
into an output stream.static void
ice_write
(OutputStream ostr, int tag, Optional<ApplicationInfo> v) Marshals an optionalApplicationInfo
into an output stream.static void
ice_write
(OutputStream ostr, ApplicationInfo v) Marshals anApplicationInfo
into an output stream.void
ice_writeMembers
(OutputStream ostr) Marshals this object's fields into an output stream.
-
Field Details
-
uuid
Unique application identifier. -
createTime
public long createTimeThe creation time. -
createUser
The user who created the application. -
updateTime
public long updateTimeThe last update time. -
updateUser
The user who updated the application. -
revision
public int revisionThe application revision number. -
descriptor
The application descriptor.
-
-
Constructor Details
-
ApplicationInfo
public ApplicationInfo()Constructs aApplicationInfo
. -
ApplicationInfo
public ApplicationInfo(String uuid, long createTime, String createUser, long updateTime, String updateUser, int revision, ApplicationDescriptor descriptor) Constructs aApplicationInfo
with values for all its fields.- Parameters:
uuid
- Unique application identifier.createTime
- The creation time.createUser
- The user who created the application.updateTime
- The last update time.updateUser
- The user who updated the application.revision
- The application revision number.descriptor
- The application descriptor.
-
-
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 anApplicationInfo
into an output stream.- Parameters:
ostr
- the output streamv
- theApplicationInfo
to marshal; can be null
-
ice_read
Unmarshals anApplicationInfo
from an input stream.- Parameters:
istr
- the input stream- Returns:
- the unmarshaled
ApplicationInfo
-
ice_write
Marshals an optionalApplicationInfo
into an output stream.- Parameters:
ostr
- the output streamtag
- the tagv
- the value to marshal
-
ice_write
Marshals an optionalApplicationInfo
into an output stream.- Parameters:
ostr
- the output streamtag
- the tagv
- the value to marshal
-
ice_read
Unmarshals an optionalApplicationInfo
from an input stream.- Parameters:
istr
- the input streamtag
- the tag- Returns:
- the unmarshaled value
-