Package de.innovationgate.webgate.api

Examples of de.innovationgate.webgate.api.WGNotSupportedException


    public WGDocumentCore removeRelation(String name) throws WGAPIException {
        throw new WGNotSupportedException("Not Supported");
    }

    public void renameFile(String oldFileName, String newFileName) throws WGAPIException {
        throw new WGNotSupportedException("Not Supported");
    }
View Full Code Here


    public void renameFile(String oldFileName, String newFileName) throws WGAPIException {
        throw new WGNotSupportedException("Not Supported");
    }

    public boolean save(Date lastModified) throws WGAPIException {
        throw new WGNotSupportedException("Not Supported");
    }
View Full Code Here

    public boolean setItemValue(String strName, Object value) throws WGAPIException {
        return false;
    }

    public boolean setMetaData(String name, Object value) throws WGAPIException {
        throw new WGNotSupportedException("Not Supported");
    }
View Full Code Here

    public boolean setMetaData(String name, Object value) throws WGAPIException {
        throw new WGNotSupportedException("Not Supported");
    }

    public WGDocumentCore setRelation(String name, WGDocumentCore target) throws WGAPIException {
        throw new WGNotSupportedException("Not Supported");
    }
View Full Code Here




    public WGRelationData getRelationData(String name) throws WGAPIException {
        throw new WGNotSupportedException("This operation is not supported by this database type");
    }
View Full Code Here




    public WGDocumentCore setRelation(WGRelationData relAddress) throws WGAPIException {
        throw new WGNotSupportedException("This operation is not supported by this database type");
    }
View Full Code Here




    public void removeExtensionData(String strName) throws WGAPIException {
        throw new WGNotSupportedException("This operation is not supported by this database type");       
    }
View Full Code Here




    public void writeExtensionData(String strName, Object value) throws WGAPIException {
        throw new WGNotSupportedException("This operation is not supported by this database type");
    }
View Full Code Here

    public String getTitle(Locale locale) {
        return _locInfo.getTitle(locale);
    }

    public void createDesign(String designName) throws WGNotSupportedException, WGADesignCreationException {
        throw new WGNotSupportedException("Creating designs is not supported for plugin design sources");
    }
View Full Code Here

    public String getTitle(Locale locale) {
        return _locInfo.getTitle(locale);
    }

    public void createDesign(String designName) throws WGNotSupportedException {
        throw new WGNotSupportedException("Creating designs is not supported for database design sources");
    }
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.