java.lang.Object
com.zeroc.IceGrid.ApplicationInfo
- All Implemented Interfaces:
Serializable,Cloneable
Information about an IceGrid application.
Remarks:
The Slice compiler generated this class from Slice struct ::IceGrid::ApplicationInfo.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongThe creation time.The user who created the application.The application descriptor.intThe application revision number.longThe 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 aApplicationInfowith values for all its fields. -
Method Summary
Modifier and TypeMethodDescriptionclone()booleaninthashCode()static ApplicationInfoice_read(InputStream istr) Unmarshals anApplicationInfofrom an input stream.static Optional<ApplicationInfo>ice_read(InputStream istr, int tag) Unmarshals an optionalApplicationInfofrom an input stream.voidice_readMembers(InputStream istr) Unmarshals and sets this object's fields from an input stream.static voidice_write(OutputStream ostr, int tag, ApplicationInfo v) Marshals an optionalApplicationInfointo an output stream.static voidice_write(OutputStream ostr, int tag, Optional<ApplicationInfo> v) Marshals an optionalApplicationInfointo an output stream.static voidice_write(OutputStream ostr, ApplicationInfo v) Marshals anApplicationInfointo an output stream.voidice_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 aApplicationInfowith 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 anApplicationInfointo an output stream.- Parameters:
ostr- the output streamv- theApplicationInfoto marshal
-
ice_read
Unmarshals anApplicationInfofrom an input stream.- Parameters:
istr- the input stream- Returns:
- the unmarshaled
ApplicationInfo
-
ice_write
Marshals an optionalApplicationInfointo an output stream.- Parameters:
ostr- the output streamtag- the tagv- the value to marshal
-
ice_write
Marshals an optionalApplicationInfointo an output stream.- Parameters:
ostr- the output streamtag- the tagv- the value to marshal
-
ice_read
Unmarshals an optionalApplicationInfofrom an input stream.- Parameters:
istr- the input streamtag- the tag- Returns:
- the unmarshaled value
-