Package com.swiftmq.mgmt
Class MetaData
- java.lang.Object
-
- com.swiftmq.mgmt.MetaData
-
-
Constructor Summary
Constructors Constructor Description MetaData(java.lang.String displayName, java.lang.String vendor, java.lang.String version, java.lang.String description)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetClassName()java.lang.StringgetDescription()java.lang.StringgetDisplayName()intgetDumpId()Returns a unique dump id for this object.java.lang.StringgetName()java.lang.StringgetVendor()java.lang.StringgetVersion()voidreadContent(java.io.DataInput in)Read the content of this object from the stream.voidsetClassName(java.lang.String className)voidsetName(java.lang.String name)java.lang.StringtoString()voidwriteContent(java.io.DataOutput out)Write the content of this object to the stream.
-
-
-
Method Detail
-
getDumpId
public int getDumpId()
Description copied from interface:DumpableReturns a unique dump id for this object.
-
writeContent
public void writeContent(java.io.DataOutput out) throws java.io.IOExceptionDescription copied from interface:DumpableWrite the content of this object to the stream.- Specified by:
writeContentin interfaceDumpable- Parameters:
out- output stream- Throws:
java.io.IOException- if an error occurs
-
readContent
public void readContent(java.io.DataInput in) throws java.io.IOExceptionDescription copied from interface:DumpableRead the content of this object from the stream.- Specified by:
readContentin interfaceDumpable- Parameters:
in- input stream- Throws:
java.io.IOException- if an error occurs
-
getName
public java.lang.String getName()
- Returns:
-
setName
public void setName(java.lang.String name)
-
getDisplayName
public java.lang.String getDisplayName()
- Returns:
-
getVendor
public java.lang.String getVendor()
- Returns:
-
getVersion
public java.lang.String getVersion()
- Returns:
-
getClassName
public java.lang.String getClassName()
- Returns:
-
setClassName
public void setClassName(java.lang.String className)
-
getDescription
public java.lang.String getDescription()
- Returns:
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-