added VocabularyEntryResource

This commit is contained in:
Mykhaylo
2020-06-19 16:40:35 +02:00
parent fa2769036a
commit 52dfbfd958

View File

@@ -0,0 +1,24 @@
/**
* The contents of this file are subject to the license and copyright
* detailed in the LICENSE and NOTICE files at the root of the source
* tree and available online at
*
* http://www.dspace.org/license/
*/
package org.dspace.app.rest.model.hateoas;
import org.dspace.app.rest.model.VocabularyEntryRest;
import org.dspace.app.rest.model.hateoas.annotations.RelNameDSpaceResource;
/**
* Vocabulary Entry Rest HAL Resource. The HAL Resource wraps the REST Resource
* adding support for the links and embedded resources
*
* @author Mykhaylo Boychuk (mykhaylo.boychuk at 4science.it)
*/
@RelNameDSpaceResource(VocabularyEntryRest.NAME)
public class VocabularyEntryResource extends HALResource<VocabularyEntryRest> {
public VocabularyEntryResource(VocabularyEntryRest sd) {
super(sd);
}
}