diff --git a/src/main/java/org/rundeck/api/ApiCall.java b/src/main/java/org/rundeck/api/ApiCall.java index f758df9..16e0a38 100644 --- a/src/main/java/org/rundeck/api/ApiCall.java +++ b/src/main/java/org/rundeck/api/ApiCall.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api; import java.io.IOException; diff --git a/src/main/java/org/rundeck/api/RundeckApiException.java b/src/main/java/org/rundeck/api/RundeckApiException.java index a7810bb..0b763f0 100644 --- a/src/main/java/org/rundeck/api/RundeckApiException.java +++ b/src/main/java/org/rundeck/api/RundeckApiException.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api; /** diff --git a/src/main/java/org/rundeck/api/RundeckClient.java b/src/main/java/org/rundeck/api/RundeckClient.java index b5dc1e1..7713374 100644 --- a/src/main/java/org/rundeck/api/RundeckClient.java +++ b/src/main/java/org/rundeck/api/RundeckClient.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api; import java.io.Serializable; diff --git a/src/main/java/org/rundeck/api/domain/RundeckExecution.java b/src/main/java/org/rundeck/api/domain/RundeckExecution.java index 715c412..0ebe54e 100644 --- a/src/main/java/org/rundeck/api/domain/RundeckExecution.java +++ b/src/main/java/org/rundeck/api/domain/RundeckExecution.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.domain; import java.io.Serializable; diff --git a/src/main/java/org/rundeck/api/domain/RundeckJob.java b/src/main/java/org/rundeck/api/domain/RundeckJob.java index b1cac7d..abf62b0 100644 --- a/src/main/java/org/rundeck/api/domain/RundeckJob.java +++ b/src/main/java/org/rundeck/api/domain/RundeckJob.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.domain; import java.io.Serializable; diff --git a/src/main/java/org/rundeck/api/domain/RundeckProject.java b/src/main/java/org/rundeck/api/domain/RundeckProject.java index 6ea6d50..0903972 100644 --- a/src/main/java/org/rundeck/api/domain/RundeckProject.java +++ b/src/main/java/org/rundeck/api/domain/RundeckProject.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.domain; import java.io.Serializable; diff --git a/src/main/java/org/rundeck/api/parser/ExecutionParser.java b/src/main/java/org/rundeck/api/parser/ExecutionParser.java index 85affb4..4d463d6 100644 --- a/src/main/java/org/rundeck/api/parser/ExecutionParser.java +++ b/src/main/java/org/rundeck/api/parser/ExecutionParser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.util.Date; diff --git a/src/main/java/org/rundeck/api/parser/ExecutionsParser.java b/src/main/java/org/rundeck/api/parser/ExecutionsParser.java index 2b542f9..8839f78 100644 --- a/src/main/java/org/rundeck/api/parser/ExecutionsParser.java +++ b/src/main/java/org/rundeck/api/parser/ExecutionsParser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.util.ArrayList; diff --git a/src/main/java/org/rundeck/api/parser/JobParser.java b/src/main/java/org/rundeck/api/parser/JobParser.java index b840bdc..ca56696 100644 --- a/src/main/java/org/rundeck/api/parser/JobParser.java +++ b/src/main/java/org/rundeck/api/parser/JobParser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import org.apache.commons.lang.StringUtils; diff --git a/src/main/java/org/rundeck/api/parser/JobsParser.java b/src/main/java/org/rundeck/api/parser/JobsParser.java index d48da4a..47629ac 100644 --- a/src/main/java/org/rundeck/api/parser/JobsParser.java +++ b/src/main/java/org/rundeck/api/parser/JobsParser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.util.ArrayList; diff --git a/src/main/java/org/rundeck/api/parser/NodeParser.java b/src/main/java/org/rundeck/api/parser/NodeParser.java index 58a80e2..795fc82 100644 --- a/src/main/java/org/rundeck/api/parser/NodeParser.java +++ b/src/main/java/org/rundeck/api/parser/NodeParser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import org.dom4j.Node; diff --git a/src/main/java/org/rundeck/api/parser/ParserHelper.java b/src/main/java/org/rundeck/api/parser/ParserHelper.java index fd5aa0a..6cfbbc7 100644 --- a/src/main/java/org/rundeck/api/parser/ParserHelper.java +++ b/src/main/java/org/rundeck/api/parser/ParserHelper.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.io.IOException; diff --git a/src/main/java/org/rundeck/api/parser/ProjectParser.java b/src/main/java/org/rundeck/api/parser/ProjectParser.java index 2b27a72..96c05a5 100644 --- a/src/main/java/org/rundeck/api/parser/ProjectParser.java +++ b/src/main/java/org/rundeck/api/parser/ProjectParser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import org.apache.commons.lang.StringUtils; diff --git a/src/main/java/org/rundeck/api/parser/ProjectsParser.java b/src/main/java/org/rundeck/api/parser/ProjectsParser.java index 9a9a619..d613772 100644 --- a/src/main/java/org/rundeck/api/parser/ProjectsParser.java +++ b/src/main/java/org/rundeck/api/parser/ProjectsParser.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.util.ArrayList; diff --git a/src/main/java/org/rundeck/api/util/AssertUtil.java b/src/main/java/org/rundeck/api/util/AssertUtil.java index de5a23e..7a22a27 100644 --- a/src/main/java/org/rundeck/api/util/AssertUtil.java +++ b/src/main/java/org/rundeck/api/util/AssertUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.util; import org.apache.commons.lang.StringUtils; diff --git a/src/main/java/org/rundeck/api/util/NodeFiltersBuilder.java b/src/main/java/org/rundeck/api/util/NodeFiltersBuilder.java index d63c9ec..e5cb258 100644 --- a/src/main/java/org/rundeck/api/util/NodeFiltersBuilder.java +++ b/src/main/java/org/rundeck/api/util/NodeFiltersBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.util; import java.util.Properties; diff --git a/src/main/java/org/rundeck/api/util/OptionsBuilder.java b/src/main/java/org/rundeck/api/util/OptionsBuilder.java index d6bb0fe..c46f19a 100644 --- a/src/main/java/org/rundeck/api/util/OptionsBuilder.java +++ b/src/main/java/org/rundeck/api/util/OptionsBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.util; import java.util.Properties; diff --git a/src/main/java/org/rundeck/api/util/ParametersUtil.java b/src/main/java/org/rundeck/api/util/ParametersUtil.java index 86f4484..f865b89 100644 --- a/src/main/java/org/rundeck/api/util/ParametersUtil.java +++ b/src/main/java/org/rundeck/api/util/ParametersUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.util; import java.io.UnsupportedEncodingException; diff --git a/src/test/java/org/rundeck/api/parser/ExecutionParserTest.java b/src/test/java/org/rundeck/api/parser/ExecutionParserTest.java index 066e72b..0c6720a 100644 --- a/src/test/java/org/rundeck/api/parser/ExecutionParserTest.java +++ b/src/test/java/org/rundeck/api/parser/ExecutionParserTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.io.InputStream; diff --git a/src/test/java/org/rundeck/api/parser/ExecutionsParserTest.java b/src/test/java/org/rundeck/api/parser/ExecutionsParserTest.java index d5f536d..95b503f 100644 --- a/src/test/java/org/rundeck/api/parser/ExecutionsParserTest.java +++ b/src/test/java/org/rundeck/api/parser/ExecutionsParserTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.io.InputStream; diff --git a/src/test/java/org/rundeck/api/parser/JobParserTest.java b/src/test/java/org/rundeck/api/parser/JobParserTest.java index a68e68f..572633c 100644 --- a/src/test/java/org/rundeck/api/parser/JobParserTest.java +++ b/src/test/java/org/rundeck/api/parser/JobParserTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.io.InputStream; diff --git a/src/test/java/org/rundeck/api/parser/JobsParserTest.java b/src/test/java/org/rundeck/api/parser/JobsParserTest.java index 35503fe..71f8797 100644 --- a/src/test/java/org/rundeck/api/parser/JobsParserTest.java +++ b/src/test/java/org/rundeck/api/parser/JobsParserTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.io.InputStream; diff --git a/src/test/java/org/rundeck/api/parser/ParserHelperTest.java b/src/test/java/org/rundeck/api/parser/ParserHelperTest.java index c745cbe..e854114 100644 --- a/src/test/java/org/rundeck/api/parser/ParserHelperTest.java +++ b/src/test/java/org/rundeck/api/parser/ParserHelperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.io.InputStream; diff --git a/src/test/java/org/rundeck/api/parser/ProjectParserTest.java b/src/test/java/org/rundeck/api/parser/ProjectParserTest.java index a123765..d985697 100644 --- a/src/test/java/org/rundeck/api/parser/ProjectParserTest.java +++ b/src/test/java/org/rundeck/api/parser/ProjectParserTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.io.InputStream; diff --git a/src/test/java/org/rundeck/api/parser/ProjectsParserTest.java b/src/test/java/org/rundeck/api/parser/ProjectsParserTest.java index 627ec79..48688c0 100644 --- a/src/test/java/org/rundeck/api/parser/ProjectsParserTest.java +++ b/src/test/java/org/rundeck/api/parser/ProjectsParserTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.parser; import java.io.InputStream; diff --git a/src/test/java/org/rundeck/api/util/ParametersUtilTest.java b/src/test/java/org/rundeck/api/util/ParametersUtilTest.java index c1022c2..8eb0dcf 100644 --- a/src/test/java/org/rundeck/api/util/ParametersUtilTest.java +++ b/src/test/java/org/rundeck/api/util/ParametersUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2011 Vincent Behar + * + * 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. + */ package org.rundeck.api.util; import java.util.Properties;