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

« back to all changes in this revision

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

  • 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:
34
34
 
35
35
package edu.ucsb.eucalyptus.cloud.entities;
36
36
 
37
 
import org.hibernate.annotations.*;
 
37
import org.hibernate.annotations.Cache;
 
38
import org.hibernate.annotations.CacheConcurrencyStrategy;
38
39
 
39
40
import javax.persistence.*;
40
 
import javax.persistence.Entity;
41
 
import javax.persistence.Table;
42
41
 
43
42
@Entity
44
43
@Table( name = "network_rule_ip_range" )