ptupitsyn commented on a change in pull request #191: URL: https://github.com/apache/ignite-3/pull/191#discussion_r674811889
########## File path: modules/client/src/main/java/org/apache/ignite/internal/client/HostAndPortRange.java ########## @@ -0,0 +1,279 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.client; + +import java.io.Serializable; +import java.net.Inet6Address; +import java.net.UnknownHostException; +import org.apache.ignite.lang.IgniteException; + +/** + * Represents address along with port range. + */ +public class HostAndPortRange implements Serializable { + /** */ + private static final long serialVersionUID = 0L; + + /** Host. */ + private final String host; + + /** Port from. */ + private final int portFrom; + + /** Port to. */ + private final int portTo; + + /** + * Parse string into host and port pair. + * + * @param addrStr String. + * @param dfltPortFrom Default port from. + * @param dfltPortTo Default port to. + * @param errMsgPrefix Error message prefix. + * @return Result. + * @throws IgniteException If failed. + */ + public static HostAndPortRange parse(String addrStr, int dfltPortFrom, int dfltPortTo, String errMsgPrefix) Review comment: Good point, brought over the `HostAndPortRangeTest` with some tweaks. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
