535455565758596061
VirtualIp vip = ipPools.findVirtualIp(getProject(), address); if (vip == null) { throw new WebApplicationException(Status.NOT_FOUND); } WrappedFloatingIp response = new WrappedFloatingIp(); response.floatingIp = toModel(vip); return response; }
798081828384858687
throw new IllegalArgumentException(); } VirtualIp vip = ipPools.allocateFloatingIp(getProject(), pool); WrappedFloatingIp response = new WrappedFloatingIp(); response.floatingIp = toModel(vip); return response; }