diff --git a/cache-infinispan/src/test/java/org/hibernate/test/cache/infinispan/functional/VersionedItem.java b/cache-infinispan/src/test/java/org/hibernate/test/cache/infinispan/functional/VersionedItem.java index ebf216d88d..96b4c4cb64 100755 --- a/cache-infinispan/src/test/java/org/hibernate/test/cache/infinispan/functional/VersionedItem.java +++ b/cache-infinispan/src/test/java/org/hibernate/test/cache/infinispan/functional/VersionedItem.java @@ -1,9 +1,8 @@ -/* - * Hibernate, Relational Persistence for Idiomatic Java +/* * Hibernate, Relational Persistence for Idiomatic Java * * Copyright (c) 2007, Red Hat, Inc. and/or it's affiliates or third-party contributors as * indicated by the @author tags or express copyright attribution - * statements applied by the authors.  All third-party contributions are + * statements applied by the authors. All third-party contributions are * distributed under license by Red Hat, Inc. and/or it's affiliates. * * This copyrighted material is made available to anyone wishing to use, modify, @@ -26,14 +25,42 @@ package org.hibernate.test.cache.infinispan.functional; /** * @author Steve Ebersole */ -public class VersionedItem extends Item { - private Long version; +public class VersionedItem { + private Long id; + private Long version; + private String name; + private String description; - public Long getVersion() { - return version; - } + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getVersion() { + return version; + } + + public void setVersion(Long version) { + this.version = version; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } - public void setVersion(Long version) { - this.version = version; - } }