> + > +import com.google.common.base.Objects; > + > +/** > + * A Neutron Subnet Allocation Pool > + * > + * @see <a > + * > href="http://docs.openstack.org/api/openstack-network/2.0/content/Subnets.html">api > + * doc</a> > + */ > +public class AllocationPool { > + > + protected final String start; > + protected final String end; > + > + protected AllocationPool(String start, String end) {
Does this need the `@ConstructorProperties` annotation? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/111/files#r14679656