Skip to content

Commit

Permalink
Import cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mbogoevici authored and pmuir committed May 28, 2012
1 parent 1782684 commit eddbf9a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
@@ -1,8 +1,16 @@
package org.jboss.jdf.example.ticketmonster.model;

import org.codehaus.jackson.annotate.JsonIgnoreProperties;

import java.io.Serializable;

import javax.persistence.*;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Lob;

/**
* A reference to a media object such as images, sound bites, video recordings, that can
Expand All @@ -11,6 +19,7 @@
* @author Marius Bogoevici
*/
@Entity
@JsonIgnoreProperties("content")
public class MediaItem implements Serializable {

private static final long serialVersionUID = -3190368407410663590L;
Expand Down
Expand Up @@ -6,7 +6,6 @@
import javax.enterprise.context.RequestScoped;
import javax.inject.Inject;
import javax.persistence.EntityManager;
import javax.persistence.EntityNotFoundException;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
Expand Down

0 comments on commit eddbf9a

Please sign in to comment.