![JAR search and dependency download from the Maven repository](/logo.png)
com.googlecode.openbox.server.SequenceServerGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssh Show documentation
Show all versions of ssh Show documentation
This is remote linux SSH module
The newest version!
package com.googlecode.openbox.server;
import java.util.HashMap;
import java.util.Map;
public class SequenceServerGroup extends AbstractServerGroup {
public SequenceServerGroup() {
super();
}
public static SequenceServerGroup newInstance() {
return new SequenceServerGroup();
}
@Override
public Map visit(final ServerAction action) {
precheckServerGroup();
Server[] servers = listServers();
Map responses = new HashMap(servers.length);
for (Server server : servers) {
responses.put(server, action.access(server));
}
return responses;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy