No effective change - format code

This commit is contained in:
Robin Bygrave
2016-05-18 09:34:20 +12:00
parent 3161664d58
commit a4cb116d4f
98 changed files with 2451 additions and 2467 deletions
@@ -9,66 +9,62 @@ import javax.persistence.ManyToOne;
/**
* A user may have multiple bookmarks
*
*
* @author Chris
*
*/
@Entity
public class BBookmark {
@Id
@GeneratedValue
private Integer id;
@Id
@GeneratedValue
private Integer id;
@Column
private String bookmarkReference;
@Column
private String bookmarkReference;
@ManyToOne(cascade = CascadeType.PERSIST)
@Column
private BBookmarkUser user;
@ManyToOne(cascade = CascadeType.PERSIST)
@Column
private BBookmarkUser user;
/**
* @return the id
*/
public Integer getId() {
return this.id;
}
/**
* @return the id
*/
public Integer getId() {
return this.id;
}
/**
* @param id
* the id to set
*/
public void setId(final Integer id) {
this.id = id;
}
/**
* @param id the id to set
*/
public void setId(final Integer id) {
this.id = id;
}
/**
* @return the bookmarkReference
*/
public String getBookmarkReference() {
return this.bookmarkReference;
}
/**
* @return the bookmarkReference
*/
public String getBookmarkReference() {
return this.bookmarkReference;
}
/**
* @param bookmarkReference
* the bookmarkReference to set
*/
public void setBookmarkReference(final String bookmarkReference) {
this.bookmarkReference = bookmarkReference;
}
/**
* @param bookmarkReference the bookmarkReference to set
*/
public void setBookmarkReference(final String bookmarkReference) {
this.bookmarkReference = bookmarkReference;
}
/**
* @return the user
*/
public BBookmarkUser getUser() {
return this.user;
}
/**
* @return the user
*/
public BBookmarkUser getUser() {
return this.user;
}
/**
* @param user
* the user to set
*/
public void setUser(final BBookmarkUser user) {
this.user = user;
}
/**
* @param user the user to set
*/
public void setUser(final BBookmarkUser user) {
this.user = user;
}
}