Package de.innovationgate.webgate.api

Examples of de.innovationgate.webgate.api.WGNotSupportedException


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

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


                return false;
            }
        }

        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 Object getExtensionData(String strName) throws WGAPIException {
            throw new WGNotSupportedException("This operation is not supported by this database type");
        }
View Full Code Here




        public List getExtensionDataNames() 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 void writeExtensionData(String strName, Object value) throws WGAPIException {
            throw new WGNotSupportedException("This operation is not supported by this database type");
        }

        public List<String> getRelationNamesOfGroup(String group) throws WGBackendException {
            throw new WGNotSupportedException("content relations are not supported on this document implementation.");
        }
View Full Code Here

*
*/
public class RSSDatabaseRetriever implements ServerDatabaseRetriever {

    public DatabaseInformation createDatabase(Class<? extends WGDatabaseCore> implClass, WGDatabaseServer dbServer, Map<String,String> options) throws WGAPIException {
        throw new WGNotSupportedException("Creating databases not supported for this type/server combination");
    }
View Full Code Here

public class GenericServerDatabaseRetriever implements ServerDatabaseRetriever {
   
    private Class<? extends WGDatabaseServer> _databaseServerType;

    public DatabaseInformation createDatabase(Class<? extends WGDatabaseCore> implClass, WGDatabaseServer dbServer, Map<String,String> options) throws WGAPIException {
        throw new WGNotSupportedException("Creating databases not supported for this type/server combination");
    }
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.