/*
* This class comes as is, no warranties whatsoever.
* Copyright Comerge AG 2009. All Rights Reserved."
*
* http://comerge.net
*/
package sudoku.core;
/**
* Constants for messages defined in the sudoku.core
namespace.
*
GENERATED DO NOT MODIFY
* @author Comerge AG http://www.comerge.net */ public class SudokuCoreMessageConstants { /** * The name of the namespace. */ public static final String SUDOKU_CORE_NAMESPACE_NAME= "sudoku.core"; public static final String MESSAGE_TYPE_NAME_SOLVE_SUDOKU_REQUEST= "solve_sudoku_request"; public static final String SOLVE_SUDOKU_REQUEST_MESSAGE_BOARD_NAME= "board"; public static final String MESSAGE_TYPE_NAME_SOLVED_SUDOKU_REPLY= "solved_sudoku_reply"; public static final String SOLVED_SUDOKU_REPLY_MESSAGE_BOARD_NAME= "board"; public static final String SOLVED_SUDOKU_REPLY_MESSAGE_SOLUTIONS_NAME= "solutions"; }