1 /**2 * Copyright 2001-2004 The eXo platform SARL All rights reserved.3 * Please look at license.txt in info directory for more license detail.4 **/5 package org.exoplatform.services.communication.sms.encoder;6 7 8 /**9 * @author Ove Ranheim (oranheim@yahoo.no)10 * @since Jun 18, 2004 6:12:46 PM11 */12 public interface Resolver {13 public Formatter getFormatter(MessageFormat format);14 public Object getOperationCode(MessageFormat format);15 }16