Examples of DeprecatedException


Examples of railo.runtime.exp.DeprecatedException

     * @param realPath
     * @param alsoDefaultMapping ignore default mapping (/) or not
     * @return physical path from mapping
     */
    public Resource getPhysical(Mapping[] mappings, String realPath, boolean alsoDefaultMapping) {
      throw new PageRuntimeException(new DeprecatedException("method not supported"));
    }
View Full Code Here

Examples of railo.runtime.exp.DeprecatedException

      throw new PageRuntimeException(new DeprecatedException("method not supported"));
    }

    public Resource[] getPhysicalResources(PageContext pc,Mapping[] mappings, String realPath,boolean onlyTopLevel,boolean useSpecialMappings, boolean useDefaultMapping) {
      // now that archives can be used the same way as physical resources, there is no need anymore to limit to that
      throw new PageRuntimeException(new DeprecatedException("method not supported"));
      /*PageSource[] pages = getPageSources(pc, mappings, realPath, onlyTopLevel, useSpecialMappings, useDefaultMapping);
      List<Resource> list=new ArrayList<Resource>();
      Resource res;
      for(int i=0;i<pages.length;i++) {
        if(!pages[i].getMapping().hasPhysical()) continue;
View Full Code Here

Examples of railo.runtime.exp.DeprecatedException

    }
   

    public Resource getPhysicalResourceExisting(PageContext pc,Mapping[] mappings, String realPath,boolean onlyTopLevel,boolean useSpecialMappings, boolean useDefaultMapping) {
      // now that archives can be used the same way as physical resources, there is no need anymore to limit to that
      throw new PageRuntimeException(new DeprecatedException("method not supported"));
      /*PageSource ps = getPageSourceExisting(pc, mappings, realPath, onlyTopLevel, useSpecialMappings, useDefaultMapping,true);
      if(ps==null) return null;
      return ps.getPhyscalFile();*/
    }
View Full Code Here

Examples of railo.runtime.exp.DeprecatedException

      return securityKey;
    }

    @Override
    public String getDebugTemplate() {
      throw new PageRuntimeException(new DeprecatedException("no longer supported, use instead getDebugEntry(ip, defaultValue)"));
    }
View Full Code Here

Examples of railo.runtime.exp.DeprecatedException

    return new HTMLDumpWriter();
  }

  @Override
  public DumpWriter getDumpWriter(String name) throws DeprecatedException {
    throw new DeprecatedException("this method is no longer supported");
  }
View Full Code Here

Examples of railo.runtime.exp.DeprecatedException

        if(action.equals("gettimezones")) {
            doGetTimeZones();
            return SKIP_BODY;
        }
        if(action.equals("printdebug")) {
          throw new DeprecatedException("action [printdebug] is no longer supported, use instead [getdebugdata]");
        }
        if(action.equals("getdebugdata")) {
            doGetDebugData();
            return SKIP_BODY;
        }
View Full Code Here

Examples of railo.runtime.exp.DeprecatedException

  public void setOwnerComponent(ComponentImpl component) {
    this.component = component;
  }
 
  public Page getPage() {
    throw new PageRuntimeException(new DeprecatedException("method getPage():Page is no longer suppoted, use instead getPageSource():PageSource"));
    }
View Full Code Here

Examples of railo.runtime.exp.DeprecatedException

    return secureJsonPrefix;
  }

  @Override
  public String getDefaultDataSource() {
    throw new PageRuntimeException(new DeprecatedException("this method is no longer supported!"));
  }
View Full Code Here

Examples of railo.runtime.exp.DeprecatedException

  public boolean isORMEnabled() {
    return ormEnabled;
  }

  public String getORMDatasource() {
    throw new PageRuntimeException(new DeprecatedException("this method is no longer supported!"));
  }
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.