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

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


        options.add(new ExplorationClone());
        options.add(new DebugClearResolvedOption());
    }

    public void parseTextEntry(final String entryText) {
        throw new UnexpectedCallException();
    }
View Full Code Here


        }
    }

    @Override
    public void parseTextEntry(final String entryText) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        return Veto.DEFAULT;
    }

    @Override
    public ObjectAdapter drop(final Content sourceContent) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        return getCollection();
    }

    @Override
    public ObjectSpecification getSpecification() {
        throw new UnexpectedCallException();
    }
View Full Code Here

    // execute
    // /////////////////////////////////////////////////////////////

    @Override
    public ObjectAdapter execute(final ObjectAdapter target, final ObjectAdapter[] parameters) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        return null;
    }

    @Override
    public Consent isProposedArgumentSetValid(final ObjectAdapter object, final ObjectAdapter[] parameters) {
        throw new UnexpectedCallException();
    }
View Full Code Here

    // defaults
    // /////////////////////////////////////////////////////////////

    @Override
    public ObjectAdapter[] getDefaults(final ObjectAdapter target) {
        throw new UnexpectedCallException();
    }
View Full Code Here

    // options
    // /////////////////////////////////////////////////////////////

    @Override
    public ObjectAdapter[][] getChoices(final ObjectAdapter target) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        final int pos = actionIdentifier.indexOf('#');

        final String methodName = actionIdentifier.substring(pos + 1);

        if (adapter == null) {
            throw new UnexpectedCallException("object not specified");
        }
        return adapter.getSpecification().getObjectAction(type, methodName, parameterSpecs);
    }
View Full Code Here

            public String encrypt(String plainText) {
                return "ENC" + plainText;
            }

            public String decrypt(String encryptedText) {
                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.