com.bytex.snamp.management.shell.ClusterMemberCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of management Show documentation
Show all versions of management Show documentation
SNAMP Management Utilities
The newest version!
package com.bytex.snamp.management.shell;
import com.bytex.snamp.core.ClusterMember;
/**
* @author Roman Sakno
* @version 2.0
* @since 2.0
*/
abstract class ClusterMemberCommand extends SnampShellCommand {
final ClusterMember clusterMember;
ClusterMemberCommand(){
clusterMember = ClusterMember.get(getBundleContext());
}
}