/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.network.logging; import org.jboss.logging.annotations.Message; import org.jboss.logging.annotations.MessageBundle; import org.jboss.logging.Messages; /** * Date: 24.06.2011 * * @author <a href="mailto:jperkins@redhat.com">James R. Perkins</a> * @author <a href="mailto:david.lloyd@redhat.com">David M. Lloyd</a> */ @MessageBundle(projectCode = "WFLYNET", length = 4) public interface NetworkMessages { /** * The default messages */ NetworkMessages MESSAGES = Messages.getBundle(NetworkMessages.class); /** * Creates an exception indicating the value cannot be changed while the socket is bound. * * @return an {@link IllegalStateException} for the error. */ @Message(id = 1, value = "cannot change value while the socket is bound.") IllegalStateException cannotChangeWhileBound(); /** * Creates an exception indicating the no multicast binding for the name. * * @param name the name. * * @return an {@link IllegalStateException} for the error. */ @Message(id = 2, value = "no multicast binding: %s") IllegalStateException noMulticastBinding(String name); // id = 3; redundant parameter null / empty check message // id = 4; redundant parameter null check message // id = 5; redundant parameter null check message // id = 6; redundant minimum port number check message }