blob: 5fc4eed2b3c1adbe7c91446362fa65c6cd65d82e [file] [log] [blame]
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.jclouds.joyent.cloudapi.v6_5.domain.datacenterscoped;
import static com.google.common.base.Preconditions.checkNotNull;
import org.jclouds.joyent.cloudapi.v6_5.domain.Machine;
/**
* @author Adrian Cole
*/
public class MachineInDatacenter extends DatacenterAndId {
protected final Machine machine;
public MachineInDatacenter(Machine machine, String datacenterId) {
super(datacenterId, checkNotNull(machine, "machine").getId());
this.machine = machine;
}
public Machine get() {
return machine;
}
// superclass hashCode/equals are good enough, and help us use DatacenterAndId and MachineInDatacenter
// interchangeably as Map keys
@Override
public String toString() {
return "[machine=" + machine + ", datacenterId=" + datacenterId + "]";
}
}