Interface IMember
-
- All Superinterfaces:
IHostResource
- All Known Subinterfaces:
IPartitionedDataSetMember
public interface IMember extends IHostResource
A member that resides on a z/OS host.For details on the state of an IMember and the function of its methods, see
IHostResource.- Since:
- 1.0.0
- Version:
- 2.0.0
- Restriction:
- This interface is not intended to be extended by clients.
- Restriction:
- This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IDataSetgetDataSet()Returns the dataset that this member is part of.StringgetDataSetName()Returns the name of the dataset that this member is part of.IZOSHostConnectiongetHostConnection()Returns the host connection used to obtained this host resource.MemberTypegetType()Returns the type of this host resource.-
Methods inherited from interface com.compuware.api.topaz.hostresources.IHostResource
getName
-
-
-
-
Method Detail
-
getDataSet
IDataSet getDataSet()
Returns the dataset that this member is part of.- Returns:
- the dataset
- Since:
- 1.0.0
-
getDataSetName
String getDataSetName()
Returns the name of the dataset that this member is part of.- Returns:
- the dataset name
- Since:
- 1.0.0
-
getHostConnection
IZOSHostConnection getHostConnection()
Returns the host connection used to obtained this host resource.- Specified by:
getHostConnectionin interfaceIHostResource- Returns:
- the z/OS host connection
- Since:
- 1.0.0
-
getType
MemberType getType()
Returns the type of this host resource.Note: the value returned from this method represents the state of this host resource from the time it was retrieved from the host. Any changes made to this host resource since it was retrieved will not be reflected in this method.
- Specified by:
getTypein interfaceIHostResource- Returns:
- the member type
- Since:
- 1.0.0
-
-