Home | History | Annotate | Download | only in jmdns

Lines Matching refs:port

73      * @param port
74 * the local port on which the service runs
79 public static ServiceInfo create(final String type, final String name, final int port, final String text) {
80 return new ServiceInfoImpl(type, name, "", port, 0, 0, false, text);
92 * @param port
93 * the local port on which the service runs
98 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final String text) {
99 return new ServiceInfoImpl(type, name, subtype, port, 0, 0, false, text);
109 * @param port
110 * the local port on which the service runs
119 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final String text) {
120 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, text);
132 * @param port
133 * the local port on which the service runs
142 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final String text) {
143 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text);
153 * @param port
154 * the local port on which the service runs
163 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final Map<String, ?> props) {
164 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, props);
176 * @param port
177 * the local port on which the service runs
186 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final Map<String, ?> props) {
187 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, props);
197 * @param port
198 * the local port on which the service runs
207 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final byte[] text) {
208 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, text);
220 * @param port
221 * the local port on which the service runs
230 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final byte[] text) {
231 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text);
241 * @param port
242 * the local port on which the service runs
253 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final String text) {
254 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, text);
266 * @param port
267 * the local port on which the service runs
278 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final String text) {
279 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, persistent, text);
289 * @param port
290 * the local port on which the service runs
301 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) {
302 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, props);
314 * @param port
315 * the local port on which the service runs
326 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) {
327 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, persistent, props);
337 * @param port
338 * the local port on which the service runs
349 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final byte[] text) {
350 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, text);
362 * @param port
363 * the local port on which the service runs
374 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final byte[] text) {
375 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, persistent, text);
383 * @param port
384 * the local port on which the service runs
395 public static ServiceInfo create(final Map<Fields, String> qualifiedNameMap, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) {
396 return new ServiceInfoImpl(qualifiedNameMap, port, weight, priority, persistent, props);
541 * Get the port for the service.
543 * @return service port
582 * Get the URL for this service. An http URL is created by combining the address, port, and path properties.
592 * Get the list of URL for this service. An http URL is created by combining the address, port, and path properties.
599 * Get the URL for this service. An URL is created by combining the protocol, address, port, and path properties.
611 * Get the list of URL for this service. An URL is created by combining the protocol, address, port, and path properties.