Examples of mapCatalogue()


Examples of it.eng.spagobi.services.content.service.MapCatalogueImpl.mapCatalogue()

  public java.lang.String mapCatalogue(java.lang.String in0,
      java.lang.String in1, java.lang.String in2, java.lang.String in3,
      java.lang.String in4, java.lang.String in5)
      throws java.rmi.RemoteException {
    MapCatalogueImpl service = new MapCatalogueImpl();
    return service.mapCatalogue(in0, in1, in2, in3, in4, in5);
  }

  public it.eng.spagobi.services.content.bo.Content readMap(
      java.lang.String in0, java.lang.String in1, java.lang.String in2)
      throws java.rmi.RemoteException {
View Full Code Here

Examples of it.eng.spagobi.services.proxy.ContentServiceProxy.mapCatalogue()

   * @throws Exception the exception
   */
  public String getStandardHierarchy() throws Exception {

  ContentServiceProxy proxy = new ContentServiceProxy(userId, session);
  String ris = proxy.mapCatalogue( GET_STANDARD_HIERARCHY, null, null, null);
  if (ris == null)
      throw new Exception("Error while getting default hierarchy");
  if (ris.equalsIgnoreCase(ERROR_HIERARCHY_NOT_FOUND)) {
      throw new Exception("Default Hierarchy not found. ");
  }
View Full Code Here

Examples of it.eng.spagobi.services.proxy.ContentServiceProxy.mapCatalogue()

   * @throws Exception the exception
   */
  public List getMapNamesByFeature(String featureName) throws Exception {

  ContentServiceProxy proxy = new ContentServiceProxy(userId,session);
  String ris = proxy.mapCatalogue( GET_MAPS_BY_FEATURE, null, featureName, null);
  if (ris == null)
      throw new Exception("Error while reading maps about feature " + featureName);
  if (ris.equalsIgnoreCase(ERROR_FEATURE_NOT_FOUND)) {
      throw new Exception("Error while reading maps about feature " + featureName);
  }
View Full Code Here

Examples of it.eng.spagobi.services.proxy.ContentServiceProxy.mapCatalogue()

   * @throws Exception the exception
   */
  public List getFeatureNamesInMap(String mapName) throws Exception {

  ContentServiceProxy proxy = new ContentServiceProxy(userId,session);
  String ris = proxy.mapCatalogue( GET_FEATURES_IN_MAP, null, null, mapName);

  if (ris == null)
      throw new Exception("Error while reading features about map " + mapName);

  if (ris.startsWith(ERROR_FEATURE_NOT_FOUND)) {
View Full Code Here

Examples of it.eng.spagobi.services.proxy.ContentServiceProxy.mapCatalogue()

   * @throws Exception the exception
   */
  public String getMapUrl(String mapName) throws Exception {

  ContentServiceProxy proxy = new ContentServiceProxy(userId,session);
  String ris = proxy.mapCatalogue(GET_MAP_URL, null, null, mapName);

  if (ris == null)
      throw new Exception("Error while reading map url " + mapName);

  if (ris.startsWith(ERROR_FEATURE_NOT_FOUND)) {
View Full Code Here

Examples of it.eng.spagobi.services.proxy.ContentServiceProxy.mapCatalogue()

   * @throws Exception the exception
   */
  public List getAllMapNames() throws Exception {

  ContentServiceProxy proxy = new ContentServiceProxy(userId,session);
  String ris = proxy.mapCatalogue( GET_ALL_MAP_NAMES, null, null, null);

  if (ris == null)
      throw new Exception("Error while reading maps ");

  if (ris.equalsIgnoreCase(ERROR_MAP_NOT_FOUND)) {
View Full Code Here

Examples of it.eng.spagobi.services.proxy.ContentServiceProxy.mapCatalogue()

   *
   * @throws Exception the exception
   */
  public List getAllFeatureNames() throws Exception {
  ContentServiceProxy proxy = new ContentServiceProxy(userId,session);
  String ris = proxy.mapCatalogue( GET_ALL_FEATURE_NAMES, null, null, null);
  if (ris == null)
      throw new Exception("Error while reading Features ");

  if (ris.equalsIgnoreCase(ERROR_FEATURE_NOT_FOUND)) {
      throw new Exception("Feature not found. ");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.