Parser.java [src/m/utils] Revision: default  Date:
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package m.utils;

import csip.api.server.ServiceException;

/**
 *
 * @author ktraff
 */
public interface Parser {

    public Object parse() throws ServiceException;
    
}