summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/kwalify
diff options
context:
space:
mode:
Diffstat (limited to 'dcaedt_validator/kwalify')
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/BaseException.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/CommandOptionException.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/Defaultable.java18
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/DefaultableHashMap.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/InvalidPathException.java21
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/InvalidTypeException.java20
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/KwalifyException.java20
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/KwalifyRuntimeException.java20
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/Main.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/Messages.java22
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/MetaValidator.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/Parser.java18
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/PlainYamlParser.java18
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/Rule.java18
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/SchemaException.java18
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/SyntaxException.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/Types.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/Util.java18
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/ValidationException.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/Validator.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/YamlParser.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/YamlSyntaxException.java19
-rw-r--r--dcaedt_validator/kwalify/src/main/java/kwalify/YamlUtil.java18
23 files changed, 405 insertions, 33 deletions
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/BaseException.java b/dcaedt_validator/kwalify/src/main/java/kwalify/BaseException.java
index a578ba4..ca18607 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/BaseException.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/BaseException.java
@@ -1,7 +1,22 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)BaseException.java $Rev: 3 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/CommandOptionException.java b/dcaedt_validator/kwalify/src/main/java/kwalify/CommandOptionException.java
index e35be85..0011dd5 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/CommandOptionException.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/CommandOptionException.java
@@ -1,7 +1,22 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)CommandOptionException.java $Rev: 4 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/Defaultable.java b/dcaedt_validator/kwalify/src/main/java/kwalify/Defaultable.java
index a2acfee..026412d 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/Defaultable.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/Defaultable.java
@@ -1,5 +1,21 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/DefaultableHashMap.java b/dcaedt_validator/kwalify/src/main/java/kwalify/DefaultableHashMap.java
index 5846f1b..d87fef1 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/DefaultableHashMap.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/DefaultableHashMap.java
@@ -1,7 +1,24 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
+
package kwalify;
import java.util.HashMap;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/InvalidPathException.java b/dcaedt_validator/kwalify/src/main/java/kwalify/InvalidPathException.java
index 94eeca2..5226027 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/InvalidPathException.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/InvalidPathException.java
@@ -1,3 +1,24 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
+ * @(#)InvalidPathException.java $Rev: 4 $ $Release: 0.5.1 $
+ * copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
/*
* @(#)InvalidPathException.java $Rev: 4 $ $Release: 0.5.1 $
*
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/InvalidTypeException.java b/dcaedt_validator/kwalify/src/main/java/kwalify/InvalidTypeException.java
index fe60ca0..e3e7b2e 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/InvalidTypeException.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/InvalidTypeException.java
@@ -1,9 +1,25 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)InvalidTypeException.java $Rev: 4 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
+
package kwalify;
/**
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/KwalifyException.java b/dcaedt_validator/kwalify/src/main/java/kwalify/KwalifyException.java
index 976a263..e9cd6bf 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/KwalifyException.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/KwalifyException.java
@@ -1,9 +1,25 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)KwalifyException.java $Rev: 3 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
+
package kwalify;
/**
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/KwalifyRuntimeException.java b/dcaedt_validator/kwalify/src/main/java/kwalify/KwalifyRuntimeException.java
index 75e4764..1996bce 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/KwalifyRuntimeException.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/KwalifyRuntimeException.java
@@ -1,9 +1,25 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)KwalifyRuntimeException.java $Rev: 3 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
+
package kwalify;
/**
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/Main.java b/dcaedt_validator/kwalify/src/main/java/kwalify/Main.java
index 0fb8547..7bb114f 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/Main.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/Main.java
@@ -1,7 +1,22 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)Main.java $Rev: 4 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/Messages.java b/dcaedt_validator/kwalify/src/main/java/kwalify/Messages.java
index e0bafb1..8d8ad25 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/Messages.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/Messages.java
@@ -1,5 +1,25 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+/*
+
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/MetaValidator.java b/dcaedt_validator/kwalify/src/main/java/kwalify/MetaValidator.java
index 8fed264..f0a8f18 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/MetaValidator.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/MetaValidator.java
@@ -1,7 +1,24 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
+
package kwalify;
import org.onap.sdc.common.onaplog.OnapLoggerError;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/Parser.java b/dcaedt_validator/kwalify/src/main/java/kwalify/Parser.java
index 53c6272..d9ec355 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/Parser.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/Parser.java
@@ -1,7 +1,23 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)Parser.java $Rev: 3 $ $Release: 0.5.1 $
*
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/PlainYamlParser.java b/dcaedt_validator/kwalify/src/main/java/kwalify/PlainYamlParser.java
index dd44403..426c798 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/PlainYamlParser.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/PlainYamlParser.java
@@ -1,5 +1,21 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/Rule.java b/dcaedt_validator/kwalify/src/main/java/kwalify/Rule.java
index f9dbfd6..ec96810 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/Rule.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/Rule.java
@@ -1,5 +1,21 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/SchemaException.java b/dcaedt_validator/kwalify/src/main/java/kwalify/SchemaException.java
index 70dafe9..c038c56 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/SchemaException.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/SchemaException.java
@@ -1,5 +1,21 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/SyntaxException.java b/dcaedt_validator/kwalify/src/main/java/kwalify/SyntaxException.java
index 8c36b66..483c4d4 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/SyntaxException.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/SyntaxException.java
@@ -1,7 +1,22 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)SyntaxException.java $Rev: 4 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/Types.java b/dcaedt_validator/kwalify/src/main/java/kwalify/Types.java
index cce8e1e..ec8529c 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/Types.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/Types.java
@@ -1,7 +1,22 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)Types.java $Rev: 4 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/Util.java b/dcaedt_validator/kwalify/src/main/java/kwalify/Util.java
index da34087..049ae4f 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/Util.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/Util.java
@@ -1,5 +1,21 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/ValidationException.java b/dcaedt_validator/kwalify/src/main/java/kwalify/ValidationException.java
index 911f9e1..00f34b1 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/ValidationException.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/ValidationException.java
@@ -1,7 +1,22 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)ValidationException.java $Rev: 4 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/Validator.java b/dcaedt_validator/kwalify/src/main/java/kwalify/Validator.java
index 9129c53..9e65b0d 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/Validator.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/Validator.java
@@ -1,7 +1,22 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)Validator.java $Rev: 3 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/YamlParser.java b/dcaedt_validator/kwalify/src/main/java/kwalify/YamlParser.java
index 7192e5d..93786b8 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/YamlParser.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/YamlParser.java
@@ -1,6 +1,23 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
+
package kwalify;
import java.util.Map;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/YamlSyntaxException.java b/dcaedt_validator/kwalify/src/main/java/kwalify/YamlSyntaxException.java
index a8b1011..e20daed 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/YamlSyntaxException.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/YamlSyntaxException.java
@@ -1,7 +1,22 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* @(#)YamlSyntaxException.java $Rev: 4 $ $Release: 0.5.1 $
- *
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;
diff --git a/dcaedt_validator/kwalify/src/main/java/kwalify/YamlUtil.java b/dcaedt_validator/kwalify/src/main/java/kwalify/YamlUtil.java
index 4b15213..f1909ab 100644
--- a/dcaedt_validator/kwalify/src/main/java/kwalify/YamlUtil.java
+++ b/dcaedt_validator/kwalify/src/main/java/kwalify/YamlUtil.java
@@ -1,5 +1,21 @@
-/*
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
* copyright(c) 2005 kuwata-lab all rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
*/
package kwalify;