diff options
Diffstat (limited to 'model/basic-model/src')
2 files changed, 6 insertions, 6 deletions
diff --git a/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxArtifactKey.java b/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxArtifactKey.java index 1f906ea22..7e39e5817 100644 --- a/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxArtifactKey.java +++ b/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxArtifactKey.java @@ -39,7 +39,7 @@ import org.onap.policy.apex.model.utilities.Assertions; * must have an {@link AxArtifactKey} to identify it. Concepts that are wholly contained in another concept are * identified using a {@link AxReferenceKey} key. * - * <p>Key validation checks that the name and version fields match the {@link NAME_REGEXP} and {@link VERSION_REGEXP} + * <p>Key validation checks that the name and version fields match the NAME_REGEXP and VERSION_REGEXP * regular expressions respectively. */ @Embeddable @@ -94,7 +94,7 @@ public class AxArtifactKey extends AxKey { /** * Constructor to create a key using the key and version from the specified key ID. * - * @param id the key ID in a format that respects the {@link KEY_ID_REGEXP} + * @param id the key ID in a format that respects the KEY_ID_REGEXP */ public AxArtifactKey(final String id) { Assertions.argumentNotNull(id, "id may not be null"); diff --git a/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxReferenceKey.java b/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxReferenceKey.java index 55ea95c3a..57196ade7 100644 --- a/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxReferenceKey.java +++ b/model/basic-model/src/main/java/org/onap/policy/apex/model/basicmodel/concepts/AxReferenceKey.java @@ -47,9 +47,9 @@ import org.onap.policy.apex.model.utilities.Assertions; * <p>If a reference key's parent is itself a reference key, then the parent's local name must be set in the reference * key. If the parent is a first order concept, then the parent's local name in the key will be set to NULL. * - * <p>Key validation checks that the parent name and parent version fields match the {@link NAME_REGEXP} and - * {@link VERSION_REGEXP} regular expressions respectively and that the local name fields match the - * {@link LOCAL_NAME_REGEXP} regular expression. + * <p>Key validation checks that the parent name and parent version fields match the NAME_REGEXP and + * VERSION_REGEXP regular expressions respectively and that the local name fields match the + * LOCAL_NAME_REGEXP regular expression. */ @Embeddable @XmlAccessorType(XmlAccessType.FIELD) @@ -203,7 +203,7 @@ public class AxReferenceKey extends AxKey { * Constructor to create a key from the specified key ID. * * @param id - * the key ID in a format that respects the {@link KEY_ID_REGEXP} + * the key ID in a format that respects the KEY_ID_REGEXP */ public AxReferenceKey(final String id) { final String conditionedId = Assertions.validateStringParameter("id", id, REFERENCE_KEY_ID_REGEXP); |