Lines Matching refs:props

159      * @param props
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);
182 * @param props
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);
297 * @param props
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);
322 * @param props
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);
391 * @param props
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);
664 * @param props
669 public abstract void setText(final Map<String, ?> props) throws IllegalStateException;