blob: 9dc1a518601b9c21236d61594c91eb5d33f8b368 [file] [log] [blame]
package org.jclouds.glesys.domain;
/**
* Wrapping booleans for the time being (gson won't allow TypeAdapter<Boolean>)
*/
public class GleSYSBoolean {
public static final GleSYSBoolean TRUE = new GleSYSBoolean(true);
public static final GleSYSBoolean FALSE = new GleSYSBoolean(false);
private boolean value;
public GleSYSBoolean(boolean value) {
this.value = value;
}
public boolean getValue() {
return value;
}
}