Add a private constructor to hide the implicit public one
Issue-ID: SO-1490
Change-Id: Icbcdc9b9a7fcfce0cd0343eecaa93b31ba819ec0
Signed-off-by: Isaac Manuel Raj <isaac.manuelraj@huawei.com>
public class OpenStackResponseStatus {
+ private OpenStackResponseStatus(){
+
+ }
+
public static final int OK = 200;
public static final int NOT_AUTHORIZED = 401;
public static final int CONFLICT = 409;
-}
+}
\ No newline at end of file
private List<String> securityGroups;
@JsonUnwrapped
- private Binding binding;
+ private Binding binding;
/**
* @return the adminStateUp
+ ", securityGroups=" + securityGroups
+ ", binding=" + binding + "]";
}
-}
+}
\ No newline at end of file