Package de.innovationgate.webgate.api

Examples of de.innovationgate.webgate.api.WGNotSupportedException


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

    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

        throw new WGNotSupportedException("Content Relations are not supported");
    }
   
   
    public List<String> getRelationNames() throws WGAPIException {
        throw new WGNotSupportedException("Content Relations are not supported");
    }
View Full Code Here

    public boolean hasFile(String file) throws WGBackendException {
        return false;
    }

    public WGRelationData getRelationData(String name) throws WGAPIException {
        throw new WGNotSupportedException("Content relations are not supported");
    }
View Full Code Here

    public WGRelationData getRelationData(String name) throws WGAPIException {
        throw new WGNotSupportedException("Content relations are not supported");
    }

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

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

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

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

    public List getExtensionDataNames() throws WGAPIException {
        throw new WGNotSupportedException("Attributes are not supported");    }
View Full Code Here

    public List getExtensionDataNames() throws WGAPIException {
        throw new WGNotSupportedException("Attributes are not supported");    }

    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

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

    public List<String> getRelationNamesOfGroup(String group) throws WGBackendException {
        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.