Revision 769e0ecb src/gr/ebs/gss/server/domain/Folder.java

b/src/gr/ebs/gss/server/domain/Folder.java
18 18
 */
19 19
package gr.ebs.gss.server.domain;
20 20

  
21
import gr.ebs.gss.server.domain.dto.FileHeaderDTO;
21 22
import gr.ebs.gss.server.domain.dto.FolderDTO;
22 23

  
23 24
import java.io.Serializable;
......
537 538
		return readForAll;
538 539
	}
539 540

  
541
	/**
542
	 * Retrieve the URI for this resource, relative to the REST API root URI.
543
	 * This unique identifier can be used to refer to the resource from
544
	 * various GSS clients.
545
	 *
546
	 * @return the URI
547
	 */
548
	public String getURI() {
549
		return owner.getUsername() + FileHeader.PATH_FILES + getPath();
550
	}
551

  
552

  
540 553
}

Also available in: Unified diff