~ubuntu-core-dev/eucalyptus/ubuntu-karmic

« back to all changes in this revision

Viewing changes to clc/modules/msgs/src/edu/ucsb/eucalyptus/msgs/VmBlockDevice.groovy

  • Committer: Dmitrii Zagorodnov
  • Date: 2009-01-27 21:53:41 UTC
  • mfrom: (25.1.112 eucalyptus-main)
  • Revision ID: dmitrii@cs.ucsb.edu-20090127215341-i0f0v6cmbpljmg02
merged with current main

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package edu.ucsb.eucalyptus.msgs
2
2
 
3
 
import org.hibernate.annotations.Entity
4
 
import javax.persistence.Embeddable
5
3
import edu.ucsb.eucalyptus.annotation.HttpParameterMapping
6
4
 
7
5
public class BlockVolumeMessage extends EucalyptusMessage {}
39
37
  String volumeId;
40
38
  String instanceId;
41
39
  String device;
 
40
  String remoteDevice;
42
41
}
43
42
public class AttachVolumeResponseType extends BlockVolumeMessage {
44
43
 
49
48
  String volumeId;
50
49
  String instanceId;
51
50
  String device;
 
51
  String remoteDevice;
52
52
  Boolean force;
53
53
}
54
54
public class DetachVolumeResponseType extends BlockVolumeMessage {
95
95
  public Volume(String volumeId) {
96
96
      this.volumeId = volumeId;
97
97
  }
 
98
 
 
99
 
98
100
}
99
101
 
100
102
public class AttachedVolume extends EucalyptusData {
102
104
  String volumeId;
103
105
  String instanceId;
104
106
  String device;
 
107
  String remoteDevice;
105
108
  String status;
106
109
  Date attachTime = new Date();
107
110