Package org.saiku.web.rest.objects

Examples of org.saiku.web.rest.objects.DataSourceMapper


      return Response.status(Response.Status.FORBIDDEN).build();
    }
    List<DataSourceMapper> l = new ArrayList<DataSourceMapper>();
    try {
      for (SaikuDatasource d : datasourceService.getDatasources().values()) {
        l.add(new DataSourceMapper(d));
      }
      return Response.ok().entity(l).build();
    } catch (SaikuServiceException e) {
      LOG.error(this.getClass().getName(), e);
      return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(e.getLocalizedMessage()).type("text/plain")
View Full Code Here

TOP

Related Classes of org.saiku.web.rest.objects.DataSourceMapper

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.