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

« back to all changes in this revision

Viewing changes to clc/modules/authentication/src/main/java/com/eucalyptus/auth/CredentialEntities.groovy

  • 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:
89
89
import javax.persistence.Temporal;
90
90
import javax.persistence.TemporalType;
91
91
import javax.persistence.Version;
 
92
import javax.persistence.PersistenceContext;
92
93
 
93
94
import org.hibernate.sql.Alias
94
95
 
96
97
import com.eucalyptus.entities.AbstractPersistent;
97
98
 
98
99
@Entity
 
100
@PersistenceContext(name="eucalyptus_auth")
99
101
@Table( name = "auth_users" )
100
102
@Cache( usage = CacheConcurrencyStrategy.READ_WRITE )
101
103
public class User extends AbstractPersistent implements Serializable {
143
145
}
144
146
 
145
147
@Entity
 
148
@PersistenceContext(name="eucalyptus_auth")
146
149
@Table(name="auth_x509")
147
150
@Cache( usage = CacheConcurrencyStrategy.READ_WRITE )
148
151
public class X509Cert extends AbstractPersistent implements Serializable {
187
190
}
188
191
 
189
192
@Entity
 
193
@PersistenceContext(name="eucalyptus_auth")
190
194
@Table( name = "auth_clusters" )
191
195
@Cache( usage = CacheConcurrencyStrategy.READ_WRITE )
192
196
public class ClusterCredentials extends AbstractPersistent implements Serializable {