Repository: knox Updated Branches: refs/heads/master edcba96ca -> d8a65875e
KNOX-315: Add support for service params in topology file (fix param.java file name issue) Project: http://git-wip-us.apache.org/repos/asf/knox/repo Commit: http://git-wip-us.apache.org/repos/asf/knox/commit/d8a65875 Tree: http://git-wip-us.apache.org/repos/asf/knox/tree/d8a65875 Diff: http://git-wip-us.apache.org/repos/asf/knox/diff/d8a65875 Branch: refs/heads/master Commit: d8a65875e748c86839405b31d538d55b9d3f9214 Parents: edcba96 Author: Kevin Minder <[email protected]> Authored: Thu Mar 20 09:52:04 2014 -0400 Committer: Kevin Minder <[email protected]> Committed: Thu Mar 20 09:52:43 2014 -0400 ---------------------------------------------------------------------- .../apache/hadoop/gateway/topology/Param.java | 42 ++++++++++++++++++++ .../apache/hadoop/gateway/topology/param.java | 42 -------------------- 2 files changed, 42 insertions(+), 42 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/knox/blob/d8a65875/gateway-spi/src/main/java/org/apache/hadoop/gateway/topology/Param.java ---------------------------------------------------------------------- diff --git a/gateway-spi/src/main/java/org/apache/hadoop/gateway/topology/Param.java b/gateway-spi/src/main/java/org/apache/hadoop/gateway/topology/Param.java new file mode 100644 index 0000000..704b0bb --- /dev/null +++ b/gateway-spi/src/main/java/org/apache/hadoop/gateway/topology/Param.java @@ -0,0 +1,42 @@ +/** + * 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.hadoop.gateway.topology; + +public class Param { + + private String name; + private String value; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value; + } + + +} http://git-wip-us.apache.org/repos/asf/knox/blob/d8a65875/gateway-spi/src/main/java/org/apache/hadoop/gateway/topology/param.java ---------------------------------------------------------------------- diff --git a/gateway-spi/src/main/java/org/apache/hadoop/gateway/topology/param.java b/gateway-spi/src/main/java/org/apache/hadoop/gateway/topology/param.java deleted file mode 100644 index 704b0bb..0000000 --- a/gateway-spi/src/main/java/org/apache/hadoop/gateway/topology/param.java +++ /dev/null @@ -1,42 +0,0 @@ -/** - * 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.hadoop.gateway.topology; - -public class Param { - - private String name; - private String value; - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getValue() { - return value; - } - - public void setValue(String value) { - this.value = value; - } - - -}
