name change from relativePath, to absolute

This commit is contained in:
joha-asc 2011-07-20 17:10:20 +02:00
parent e0928de5bf
commit d453e02ae2

@ -14,6 +14,8 @@ import se.su.dsv.scipro.data.enums.NotificationPriority;
*/
public class SubscriberModel implements IClusterable{
private static final long serialVersionUID = 1L;
private User user;
private String relativePath;
private NotificationPriority notificationPriority;
@ -21,13 +23,13 @@ public class SubscriberModel implements IClusterable{
/**
* @param user
* @param relativePath
* @param absolutePath
* @param notificationPriority
*/
public SubscriberModel(User user, String relativePath, NotificationPriority notificationPriority) {
public SubscriberModel(User user, String absolutePath, NotificationPriority notificationPriority) {
super();
this.user = user;
this.relativePath = relativePath;
this.relativePath = absolutePath;
this.notificationPriority = notificationPriority;
}
/**
@ -42,6 +44,7 @@ public class SubscriberModel implements IClusterable{
public void setUser(User user) {
this.user = user;
}
/**
* @return the relativePath
*/