Skip to content
Snippets Groups Projects
Commit 8050acc4 authored by Jonas Blatt's avatar Jonas Blatt :ant:
Browse files

Add documentation for input data id

parent 192d250a
No related branches found
No related tags found
No related merge requests found
package de.unikoblenz.fgbks.core.dmn.domain.ids;
import de.unikoblenz.fgbks.core.dmn.domain.vdmn.VDmnInputData;
/**
* A InputDataId id, representing the id of a {@link VDmnInputData}.
*/
@JsonIdentifier("ruleId")
public class InputDataId extends AbstractId {
/**
* Create a new copy of the initialValue with the id value of the given Id object.
*
* @param initialValue the original id
*/
public InputDataId(InputDataId initialValue) {
this(initialValue.getValue());
}
/**
* Create new InputDataId with the id value of the initialValue.
*
* @param initialValue the value of the new id
*/
public InputDataId(String initialValue) {
super(initialValue);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment