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