Updated Branches: refs/heads/master 654db15d0 -> 2560c47e6
adding a missed class Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/990ebc7b Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/990ebc7b Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/990ebc7b Branch: refs/heads/master Commit: 990ebc7b7cd0856ab9743959c2772f15c02d3491 Parents: a46827c Author: Isuru <[email protected]> Authored: Thu Feb 13 23:07:05 2014 +0530 Committer: Isuru <[email protected]> Committed: Thu Feb 13 23:07:05 2014 +0530 ---------------------------------------------------------------------- .../endpoint/bean/StratosAdminResponse.java | 36 ++++++++++++++++++++ 1 file changed, 36 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/990ebc7b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/bean/StratosAdminResponse.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/bean/StratosAdminResponse.java b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/bean/StratosAdminResponse.java new file mode 100644 index 0000000..5f0fa4c --- /dev/null +++ b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/bean/StratosAdminResponse.java @@ -0,0 +1,36 @@ +/* + * 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; + +@XmlRootElement +public class StratosAdminResponse { + + private String message; + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message; + } +}
