Package de.innovationgate.webgate.api

Examples of de.innovationgate.webgate.api.WGNotSupportedException


    public boolean moveStructEntry(WGStructEntry entry, WGDocument newParent) {
        return false;
    }

    public int getContentCount(WGStructEntry entry) throws WGNotSupportedException {
        throw new WGNotSupportedException("Not supported");
    }
View Full Code Here


        // unsupported for this implementation
        return Collections.EMPTY_SET;
    }

    public List getAllContentKeys(boolean includeArchived) throws WGAPIException {
        throw new WGNotSupportedException("This method is not supported by this WGAPI implementation");
    }
View Full Code Here

  public void beginUpdate() {
  }

    public WGDocumentCore getStructEntryByName(String strName) throws WGAPIException {
        throw new WGNotSupportedException("This method is not supported by this WGAPI implementation");
    }
View Full Code Here

    public WGLanguage selectDatabaseLanguage(WGDatabase db) throws WGAPIException {
        return _langBehaviour.requestSelectDatabaseLanguage(db, _req);
    }

    public WGContentKey chooseQueryContent(WGDatabase db, Map<String, WGContentKey> contents) throws WGAPIException {
        throw new WGNotSupportedException("RequestLanguageChooser cannot do this");
    }
View Full Code Here

    public WGContentKey chooseQueryContent(WGDatabase db, Map<String, WGContentKey> contents) throws WGAPIException {
        throw new WGNotSupportedException("RequestLanguageChooser cannot do this");
    }

    public List<WGLanguage> getQueryLanguages(WGDatabase db) throws WGAPIException {
        throw new WGNotSupportedException("RequestLanguageChooser cannot do this");
    }
View Full Code Here

        public String getOriginDatabase() {
            return _db.getDbReference();
        }

    public void renameFile(String oldFileName, String newFileName) throws WGAPIException {
      throw new WGNotSupportedException("renameFile() is not supported on this document implementation.");     
    }
View Full Code Here

    public void renameFile(String oldFileName, String newFileName) throws WGAPIException {
      throw new WGNotSupportedException("renameFile() is not supported on this document implementation.");     
    }
   
    public WGFileMetaData getFileMetaData(String strFile) throws WGAPIException {
      throw new WGNotSupportedException("getFileMetaData() is not supported on this document implementation.");
    }
View Full Code Here

    public WGFileMetaData getFileMetaData(String strFile) throws WGAPIException {
      throw new WGNotSupportedException("getFileMetaData() is not supported on this document implementation.");
    }

        public WGDocumentCore getRelation(String name) throws WGAPIException {
            throw new WGNotSupportedException("content relations are not supported on this document implementation.");
        }
View Full Code Here

        public WGDocumentCore getRelation(String name) throws WGAPIException {
            throw new WGNotSupportedException("content relations are not supported on this document implementation.");
        }

        public List getRelationNames() throws WGAPIException {
            throw new WGNotSupportedException("content relations are not supported on this document implementation.");
        }
View Full Code Here

        public List getRelationNames() throws WGAPIException {
            throw new WGNotSupportedException("content relations are not supported on this document implementation.");
        }

        public WGDocumentCore removeRelation(String name) throws WGAPIException {
            throw new WGNotSupportedException("content relations are not supported on this document implementation.");
        }
View Full Code Here

TOP

Related Classes of de.innovationgate.webgate.api.WGNotSupportedException

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.