Package de.innovationgate.webgate.api

Examples of de.innovationgate.webgate.api.WGNotSupportedException


        return _db.getDb().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


      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 WGDocumentCore getRelation(String name) throws WGAPIException {
        return null;
    }

    public WGDocumentCore removeRelation(String name) throws WGAPIException {
        throw new WGNotSupportedException("Content Relations are not supported");
    }
View Full Code Here

    public WGDocumentCore removeRelation(String name) throws WGAPIException {
        throw new WGNotSupportedException("Content Relations are not supported");
    }

    public WGDocumentCore setRelation(String name, WGDocumentCore target) throws WGAPIException {
        throw new WGNotSupportedException("Content Relations are not supported");
    }
View Full Code Here

    public WGRelationData getRelationData(String name) throws WGAPIException {
        return null;
    }

    public WGDocumentCore setRelation(WGRelationData data) throws WGAPIException {
        throw new WGNotSupportedException("Content relations are not supported");
    }
View Full Code Here

    public List getExtensionDataNames() throws WGAPIException {
        return Collections.emptyList();
    }

    public void removeExtensionData(String strName) throws WGAPIException {
        throw new WGNotSupportedException("Attributes are not supported");    }
View Full Code Here

    public void removeExtensionData(String strName) throws WGAPIException {
        throw new WGNotSupportedException("Attributes are not supported");    }

    public void writeExtensionData(String strName, Object value) throws WGAPIException {
        throw new WGNotSupportedException("Attributes are not supported");
    }
View Full Code Here

        return _db.getDb().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

      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");
    }
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.