Package org.apache.isis.core.commons.exceptions

Examples of org.apache.isis.core.commons.exceptions.UnexpectedCallException


        return "no description";
    }

    @Override
    public Facet getFacet(final Class cls) {
        throw new UnexpectedCallException();
    }
View Full Code Here


        setAssociation(inObject, associate);
    }

    @Override
    public Consent isAssociationValid(final ObjectAdapter inObject, final ObjectAdapter value) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        return false;
    }

    @Override
    public boolean isEmpty(final ObjectAdapter inObject) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        throw new UnexpectedCallException();
    }

    @Override
    public boolean isMandatory() {
        throw new UnexpectedCallException();
    }
View Full Code Here

        return null;
    }

    @Override
    protected T doParse(final Object original, final String entry) {
        throw new UnexpectedCallException();
    }
View Full Code Here

                final String time = reader.readTime();
                version = versionCreator.version(versionString, user, time);
            }
            if (version.different(object.getVersion())) {
                // TODO - do we need to CHECK version and update
                throw new UnexpectedCallException();
            } else {
                return object;
            }
        }
View Full Code Here

        return true;
    }

    @Override
    public void clearAssociation(final ObjectAdapter inObject) {
        throw new UnexpectedCallException();
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.core.commons.exceptions.UnexpectedCallException

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.