Repository: incubator-stratos Updated Branches: refs/heads/4.0.0-incubating 33471692b -> b605723ae
Revert "Adding SubscriptionDomainRequest.java" This reverts commit 33471692bce9f0cd927705db03839fe8cd2d4e12. Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/87d18b1f Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/87d18b1f Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/87d18b1f Branch: refs/heads/4.0.0-incubating Commit: 87d18b1f5e70f05e1d7a1336980ebf3301ed33bd Parents: 3347169 Author: Imesh Gunaratne <[email protected]> Authored: Tue Apr 29 00:53:35 2014 +0530 Committer: Imesh Gunaratne <[email protected]> Committed: Tue Apr 29 00:53:35 2014 +0530 ---------------------------------------------------------------------- .../bean/SubscriptionDomainRequest.java | 39 -------------------- 1 file changed, 39 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/87d18b1f/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/bean/SubscriptionDomainRequest.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/bean/SubscriptionDomainRequest.java b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/bean/SubscriptionDomainRequest.java deleted file mode 100644 index 9b066cb..0000000 --- a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/bean/SubscriptionDomainRequest.java +++ /dev/null @@ -1,39 +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.stratos.rest.endpoint.bean; - -import javax.xml.bind.annotation.XmlRootElement; -import java.util.List; - -/** - * Defines subscription domain post request. - */ -@XmlRootElement(name = "subscriptionDomainRequest") -public class SubscriptionDomainRequest { - private List<String> domains; - - public List<String> getDomains() { - return domains; - } - - public void setDomains(List<String> domains) { - this.domains = domains; - } -}
