summaryrefslogtreecommitdiffstats
path: root/quantum-model/src/main/java/com/woorea/openstack/quantum/model/NeutronError.java
diff options
context:
space:
mode:
Diffstat (limited to 'quantum-model/src/main/java/com/woorea/openstack/quantum/model/NeutronError.java')
-rw-r--r--quantum-model/src/main/java/com/woorea/openstack/quantum/model/NeutronError.java64
1 files changed, 32 insertions, 32 deletions
diff --git a/quantum-model/src/main/java/com/woorea/openstack/quantum/model/NeutronError.java b/quantum-model/src/main/java/com/woorea/openstack/quantum/model/NeutronError.java
index 4dac0ea..91e998e 100644
--- a/quantum-model/src/main/java/com/woorea/openstack/quantum/model/NeutronError.java
+++ b/quantum-model/src/main/java/com/woorea/openstack/quantum/model/NeutronError.java
@@ -46,40 +46,40 @@ import org.codehaus.jackson.map.annotate.JsonRootName;
@JsonRootName("NeutronError")
public class NeutronError implements Serializable {
- private String type;
-
- private String message;
+ private String type;
+
+ private String message;
- private String detail;
-
- /**
- * @return the code
- */
- public String getType() {
- return type;
- }
+ private String detail;
+
+ /**
+ * @return the code
+ */
+ public String getType() {
+ return type;
+ }
- /**
- * @return the message
- */
- public String getMessage() {
- return message;
- }
+ /**
+ * @return the message
+ */
+ public String getMessage() {
+ return message;
+ }
- /**
- * @return the title
- */
- public String getDetail() {
- return detail;
- }
+ /**
+ * @return the title
+ */
+ public String getDetail() {
+ return detail;
+ }
- /* (non-Javadoc)
- * @see java.lang.Object#toString()
- */
- @Override
- public String toString() {
- return "NeutronError [type=" + type + ", title=" + detail + ", message="
- + message + "]";
- }
-
+ /* (non-Javadoc)
+ * @see java.lang.Object#toString()
+ */
+ @Override
+ public String toString() {
+ return "NeutronError [type=" + type + ", title=" + detail + ", message="
+ + message + "]";
+ }
+
}