blob: 7ea3361de373c3f6c9b0067d7bd9b6f07694a150 [file] [log] [blame]
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds 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.jclouds.fujitsu.fgcp.xml.internal;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
/**
* Base class with fields for the elements that FGCP XML responses specify.
*
* @author Dies Koper
*/
public abstract class StatusResponse implements StatusQuerable {
@XmlElement(required = true)
private String responseMessage;
@XmlElement(required = true)
private String responseStatus;
public String getResponseMessage() {
return responseMessage;
}
public void setResponseMessage(String responseMessage) {
this.responseMessage = responseMessage;
}
public String getResponseStatus() {
return responseStatus;
}
public void setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
}
public boolean isError() {
return !"SUCCESS".equals(responseStatus);
}
@Override
public String toString() {
return "StatusResponse{" + "responseMessage='" + responseMessage + '\''
+ ", responseStatus='" + responseStatus + '\'' + '}';
}
}