AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / serialization / db / DeleteSemantic.java
index abaa876..caa64ca 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-package org.onap.aai.serialization.db;
 
+package org.onap.aai.serialization.db;
 
 /**
       *  Possible values for deleteScope can be:
       *      USE_DEFAULT - Get the scope from ref data for this node
       *      THIS_NODE_ONLY (but should fail if it there are nodes that depend on it for uniqueness)
       *      CASCADE_TO_CHILDREN  - will look for OUT-Edges that have parentOf/hasDelTarget = true and follow those down
       *      ERROR_4_IN_EDGES_OR_CASCADE - combo of error-if-any-IN-edges + CascadeToChildren
-        *      ERROR_IF_ANY_IN_EDGES - Fail if this node has any existing IN edges 
       *      ERROR_IF_ANY_EDGES - Fail if this node has any existing edges at all!
* Possible values for deleteScope can be:
* USE_DEFAULT - Get the scope from ref data for this node
* THIS_NODE_ONLY (but should fail if it there are nodes that depend on it for uniqueness)
* CASCADE_TO_CHILDREN - will look for OUT-Edges that have parentOf/hasDelTarget = true and follow those down
* ERROR_4_IN_EDGES_OR_CASCADE - combo of error-if-any-IN-edges + CascadeToChildren
+ * ERROR_IF_ANY_IN_EDGES - Fail if this node has any existing IN edges
* ERROR_IF_ANY_EDGES - Fail if this node has any existing edges at all!
  */
 public enum DeleteSemantic {
-       USE_DEFAULT,
-       THIS_NODE_ONLY,
-       CASCADE_TO_CHILDREN,
-       ERROR_4_IN_EDGES_OR_CASCADE, 
-       ERROR_IF_ANY_IN_EDGES, 
-       ERROR_IF_ANY_EDGES, 
+    USE_DEFAULT, THIS_NODE_ONLY, CASCADE_TO_CHILDREN, ERROR_4_IN_EDGES_OR_CASCADE, ERROR_IF_ANY_IN_EDGES, ERROR_IF_ANY_EDGES,
 }