~ubuntu-branches/ubuntu/natty/eucalyptus/natty-updates

« back to all changes in this revision

Viewing changes to clc/modules/core/src/main/java/edu/ucsb/eucalyptus/cloud/entities/Address.java

  • Committer: Bazaar Package Importer
  • Author(s): Dustin Kirkland
  • Date: 2009-12-17 18:22:02 UTC
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: james.westby@ubuntu.com-20091217182202-0v2v09ry3cxrvh84
Tags: upstream-1.6.2~bzr1103
ImportĀ upstreamĀ versionĀ 1.6.2~bzr1103

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
import javax.persistence.Entity;
74
74
import javax.persistence.GeneratedValue;
75
75
import javax.persistence.Id;
 
76
import javax.persistence.PersistenceContext;
76
77
import javax.persistence.Table;
77
78
import javax.persistence.Transient;
78
79
 
89
90
import edu.ucsb.eucalyptus.msgs.EventRecord;
90
91
 
91
92
@Entity
 
93
@PersistenceContext(name="eucalyptus_general")
92
94
@Table( name = "addresses" )
93
95
@Cache( usage = CacheConcurrencyStrategy.READ_WRITE )
94
96
public class Address implements HasName {