Package uk.ac.osswatch.simal.rest

Examples of uk.ac.osswatch.simal.rest.IAPIHandler


   * @return
   * @throws SimalAPIException
   */
  public static IAPIHandler createHandler(RESTCommand command)
      throws SimalAPIException {
    IAPIHandler handler = null;
    if (command.isPersonCommand()) {
      try {
        handler = new PersonAPI(command);
      } catch (SimalRepositoryException e) {
        throw new SimalAPIException("Unable to create API handler", e);
View Full Code Here

TOP

Related Classes of uk.ac.osswatch.simal.rest.IAPIHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.