Added Apache License Header to org.apache.stratos.cli component source files
Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/50d35665 Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/50d35665 Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/50d35665 Branch: refs/heads/master Commit: 50d356654729c891b404d7f0ec4f620cf0622ac6 Parents: 9ddbca1 Author: M. Isuru Tharanga Chrishantha Perera <[email protected]> Authored: Mon Mar 31 17:54:33 2014 +0530 Committer: M. Isuru Tharanga Chrishantha Perera <[email protected]> Committed: Mon Mar 31 17:54:33 2014 +0530 ---------------------------------------------------------------------- .../stratos/cli/beans/topology/Cluster.java | 21 ++++++++++++++++++++ .../stratos/cli/beans/topology/Member.java | 21 ++++++++++++++++++++ .../cli/beans/topology/MemberStatus.java | 21 ++++++++++++++++++++ .../apache/stratos/cli/beans/topology/Port.java | 21 ++++++++++++++++++++ 4 files changed, 84 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/50d35665/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Cluster.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Cluster.java b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Cluster.java index 4d4889c..066d6b4 100644 --- a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Cluster.java +++ b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Cluster.java @@ -1,4 +1,25 @@ package org.apache.stratos.cli.beans.topology; +/* + * + * 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. + * +*/ + import java.util.List; http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/50d35665/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Member.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Member.java b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Member.java index a08dd81..6994a51 100644 --- a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Member.java +++ b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Member.java @@ -1,4 +1,25 @@ package org.apache.stratos.cli.beans.topology; +/* + * + * 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. + * +*/ + public class Member { private String serviceName; http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/50d35665/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/MemberStatus.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/MemberStatus.java b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/MemberStatus.java index 6e50160..6535ff9 100644 --- a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/MemberStatus.java +++ b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/MemberStatus.java @@ -1,4 +1,25 @@ package org.apache.stratos.cli.beans.topology; +/* + * + * 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. + * +*/ + public enum MemberStatus { Created, Starting, Activated, Suspended, ReadyToShutDown, ShuttingDown, Terminated http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/50d35665/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Port.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Port.java b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Port.java index b79700c..398c3cd 100644 --- a/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Port.java +++ b/components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/beans/topology/Port.java @@ -1,4 +1,25 @@ package org.apache.stratos.cli.beans.topology; +/* + * + * 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. + * +*/ + public class Port { private static final long serialVersionUID = -2530288421360188256L;
