001package org.biopax.paxtools.impl.level3;
002
003import org.biopax.paxtools.model.level3.TemplateReactionRegulation;
004import org.hibernate.annotations.Cache;
005import org.hibernate.annotations.CacheConcurrencyStrategy;
006import org.hibernate.annotations.Proxy;
007import org.hibernate.annotations.DynamicInsert;
008import org.hibernate.annotations.DynamicUpdate; 
009import org.hibernate.search.annotations.Indexed;
010
011import javax.persistence.Entity;
012import javax.persistence.Transient;
013
014@Entity
015@Proxy(proxyClass= TemplateReactionRegulation.class)
016@Indexed
017@DynamicUpdate @DynamicInsert
018@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
019public class TemplateReactionRegulationImpl extends ControlImpl implements TemplateReactionRegulation
020{
021        public TemplateReactionRegulationImpl() {
022        }
023        
024        @Transient
025    public Class<? extends TemplateReactionRegulation> getModelInterface()
026        {
027                return TemplateReactionRegulation.class;
028        }
029}