Repository: stratos Updated Branches: refs/heads/master 0e2e70402 -> b6e44a62c
Adding scaling order class Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/b6e44a62 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/b6e44a62 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/b6e44a62 Branch: refs/heads/master Commit: b6e44a62cdedb95005da346e44d9320a6d72fc74 Parents: 0e2e704 Author: Lahiru Sandaruwan <[email protected]> Authored: Mon Nov 10 15:28:36 2014 +0530 Committer: Lahiru Sandaruwan <[email protected]> Committed: Mon Nov 10 15:28:36 2014 +0530 ---------------------------------------------------------------------- .../domain/applications/ScalingOrder.java | 40 ++++++++++++++++++++ 1 file changed, 40 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/b6e44a62/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/domain/applications/ScalingOrder.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/domain/applications/ScalingOrder.java b/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/domain/applications/ScalingOrder.java new file mode 100644 index 0000000..f26b7a2 --- /dev/null +++ b/components/org.apache.stratos.messaging/src/main/java/org/apache/stratos/messaging/domain/applications/ScalingOrder.java @@ -0,0 +1,40 @@ +/* + * 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.stratos.messaging.domain.applications; + +import java.io.Serializable; +import java.util.List; + +public class ScalingOrder implements Serializable { + + private List<String> startList; + + public ScalingOrder(List<String> startList) { + this.startList = startList; + } + + public List<String> getStartList() { + return startList; + } + + public void setStartList(List<String> startList) { + this.startList = startList; + } +}
