AMBARI-18051 - Services should be able to provide their own pre-req checks by supplying a jar file
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/7b924342 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/7b924342 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/7b924342 Branch: refs/heads/branch-feature-AMBARI-18456 Commit: 7b92434290f1e092e228bcc74584d4a4630ac392 Parents: 53b4bd4 Author: Tim Thorpe <[email protected]> Authored: Tue Sep 27 08:21:56 2016 -0700 Committer: Tim Thorpe <[email protected]> Committed: Tue Sep 27 08:21:56 2016 -0700 ---------------------------------------------------------------------- .../server/sample/checks/SampleServiceCheck.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/7b924342/ambari-server/src/test/java/org/apache/ambari/server/sample/checks/SampleServiceCheck.java ---------------------------------------------------------------------- diff --git a/ambari-server/src/test/java/org/apache/ambari/server/sample/checks/SampleServiceCheck.java b/ambari-server/src/test/java/org/apache/ambari/server/sample/checks/SampleServiceCheck.java index c91793e..1c16040 100644 --- a/ambari-server/src/test/java/org/apache/ambari/server/sample/checks/SampleServiceCheck.java +++ b/ambari-server/src/test/java/org/apache/ambari/server/sample/checks/SampleServiceCheck.java @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.apache.ambari.server.sample.checks; import org.apache.ambari.server.AmbariException;
