Package com.zeroc.IceGrid
Class ApplicationInfo
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 descriptorint
The application revision number.long
The update time.The user who updated the application.Unique application identifier. -
Constructor Summary
ConstructorsConstructorDescriptionApplicationInfo
(String uuid, long createTime, String createUser, long updateTime, String updateUser, int revision, ApplicationDescriptor descriptor) -
Method Summary
Modifier and TypeMethodDescriptionclone()
boolean
int
hashCode()
static ApplicationInfo
ice_read
(InputStream istr) static Optional<ApplicationInfo>
ice_read
(InputStream istr, int tag) void
ice_readMembers
(InputStream istr) static void
ice_write
(OutputStream ostr, int tag, ApplicationInfo v) static void
ice_write
(OutputStream ostr, int tag, Optional<ApplicationInfo> v) static void
ice_write
(OutputStream ostr, ApplicationInfo v) void
ice_writeMembers
(OutputStream ostr)
-
Field Details
-
uuid
Unique application identifier. -
createTime
public long createTimeThe creation time. -
createUser
The user who created the application. -
updateTime
public long updateTimeThe 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() -
ApplicationInfo
public ApplicationInfo(String uuid, long createTime, String createUser, long updateTime, String updateUser, int revision, ApplicationDescriptor descriptor)
-
-
Method Details