Skip to content

Commit

Permalink
[Task 71440] added javadocs to SubmissionCCLicenseUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
Raf-atmire committed Jun 24, 2020
1 parent 9f9fe26 commit 2b6f19f
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,28 @@
*/
package org.dspace.app.rest.model.wrapper;

/**
* This class represents a model implementation for {@link org.dspace.app.rest.model.SubmissionCCLicenseUrlRest}
* This will simply store a url and an id. it'll be used to create an object with these variables out of information
* that came from the back-end. This object will then be used in the
* {@link org.dspace.app.rest.converter.SubmissionCCLicenseUrlConverter} to turn it into its REST object
*/
public class SubmissionCCLicenseUrl {

/**
* The url for ths object
*/
private String url;
/**
* The id for this object
*/
private String id;

/**
* Default constructor with two parameters, url and id
* @param url The url of this object
* @param id The id of this object
*/
public SubmissionCCLicenseUrl(String url, String id) {
this.url = url;
this.id = id;
Expand Down

0 comments on commit 2b6f19f

Please sign in to comment.