Package org.apache.marmotta.platform.ldp.exceptions

Examples of org.apache.marmotta.platform.ldp.exceptions.InvalidInteractionModelException


                } else if (LDP.Resource.stringValue().equals(href)) {
                    log.debug("LDPC Interaction Model detected");
                    return InteractionModel.LDPC;
                } else {
                    log.debug("Invalid/Unknown LDP Interaction Model: {}", href);
                    throw new InvalidInteractionModelException(href);
                }
            }
        }
        log.debug("No LDP Interaction Model specified, defaulting to {}", InteractionModel.LDPC);
        // Default Interaction Model is LDPC
View Full Code Here

TOP

Related Classes of org.apache.marmotta.platform.ldp.exceptions.InvalidInteractionModelException

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.