forked from eucalyptus/eucalyptus
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from sjones4/topic-cluster-backends
Cluster controller backends
- Loading branch information
Showing
42 changed files
with
1,638 additions
and
1,426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ | |
* NEEDED TO COMPLY WITH ANY SUCH LICENSES OR RIGHTS. | ||
************************************************************************/ | ||
|
||
package com.eucalyptus.cluster.proxy.node; | ||
package com.eucalyptus.cluster.node; | ||
|
||
import org.apache.log4j.Logger; | ||
|
||
|
@@ -54,13 +54,13 @@ | |
* @author chris grzegorczyk <[email protected]> | ||
* @todo doc | ||
*/ | ||
@ComponentPart(ProxyNodeController.class) | ||
public class ProxyNodeServiceBuilder implements ServiceBuilder<ProxyNodeConfiguration> { | ||
private static Logger LOG = Logger.getLogger( ProxyNodeServiceBuilder.class ); | ||
@ComponentPart(NodeController.class) | ||
public class NodeControllerServiceBuilder implements ServiceBuilder<NodeControllerConfiguration> { | ||
private static Logger LOG = Logger.getLogger( NodeControllerServiceBuilder.class ); | ||
|
||
@Override | ||
public ComponentId getComponentId() { | ||
return ComponentIds.lookup( ProxyNodeController.class ); | ||
return ComponentIds.lookup( NodeController.class ); | ||
} | ||
|
||
@Override | ||
|
@@ -141,13 +141,13 @@ public void fireCheck( ServiceConfiguration config ) throws ServiceRegistrationE | |
} | ||
|
||
@Override | ||
public ProxyNodeConfiguration newInstance( String partition, String name, String host, Integer port ) { | ||
return new ProxyNodeConfiguration( partition, host ); | ||
public NodeControllerConfiguration newInstance( String partition, String name, String host, Integer port ) { | ||
return new NodeControllerConfiguration( partition, host ); | ||
} | ||
|
||
@Override | ||
public ProxyNodeConfiguration newInstance() { | ||
return new ProxyNodeConfiguration(); | ||
public NodeControllerConfiguration newInstance() { | ||
return new NodeControllerConfiguration(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.