Package org.apache.isis.viewer.junit.internal

Source Code of org.apache.isis.viewer.junit.internal.AnnotationInstaller

/*
*  Licensed to the Apache Software Foundation (ASF) under one
*  or more contributor license agreements.  See the NOTICE file
*  distributed with this work for additional information
*  regarding copyright ownership.  The ASF licenses this file
*  to you under the Apache License, Version 2.0 (the
*  "License"); you may not use this file except in compliance
*  with the License.  You may obtain a copy of the License at
*
*        http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing,
*  software distributed under the License is distributed on an
*  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
*  KIND, either express or implied.  See the License for the
*  specific language governing permissions and limitations
*  under the License.
*/
package org.apache.isis.viewer.junit.internal;

import org.apache.isis.core.runtime.authentication.AuthenticationManagerInstaller;
import org.apache.isis.core.runtime.authorization.AuthorizationManagerInstaller;
import org.apache.isis.runtimes.dflt.runtime.installerregistry.installerapi.PersistenceMechanismInstaller;
import org.apache.isis.security.dflt.authentication.NoopAuthenticationManagerInstaller;
import org.apache.isis.security.dflt.authorization.NoopAuthorizationManagerInstaller;
import org.apache.isis.viewer.junit.Authenticator;
import org.apache.isis.viewer.junit.Authorizor;
import org.apache.isis.viewer.junit.Persistor;

public class AnnotationInstaller {

    /**
     * Should be called prior to installing; typically called immediately after
     * instantiation.
     *
     * <p>
     * Note: an alternative design would be to have a 1-arg constructor, but the
     * convention for installers is to make them no-arg.
     */
    // {{ AuthenticationManagerInstaller
    public AuthenticationManagerInstaller addAuthenticatorAnnotatedOn(final Class<?> javaClass) throws InstantiationException, IllegalAccessException {
        final Authenticator authenticatorAnnotation = javaClass.getAnnotation(Authenticator.class);
        if (authenticatorAnnotation != null) {
            return addAuthenticatorRepresentedBy(authenticatorAnnotation);
        } else {
            return new NoopAuthenticationManagerInstaller();
        }

    }

    private AuthenticationManagerInstaller addAuthenticatorRepresentedBy(final Authenticator authenticatorAnnotation) throws InstantiationException, IllegalAccessException {
        final Class<?> fixtureClass = authenticatorAnnotation.value();
        return (AuthenticationManagerInstaller) fixtureClass.newInstance();
    }

    // }}

    // {{ AuthorizationManagerInstaller
    public AuthorizationManagerInstaller addAuthorizerAnnotatedOn(final Class<?> javaClass) throws InstantiationException, IllegalAccessException {
        final Authorizor authorizorAnnotation = javaClass.getAnnotation(Authorizor.class);
        if (authorizorAnnotation != null) {
            return addAuthorizerRepresentedBy(authorizorAnnotation);
        } else {
            return new NoopAuthorizationManagerInstaller();
        }

    }

    private AuthorizationManagerInstaller addAuthorizerRepresentedBy(final Authorizor authorizorAnnotation) throws InstantiationException, IllegalAccessException {
        final Class<?> fixtureClass = authorizorAnnotation.value();
        return (AuthorizationManagerInstaller) fixtureClass.newInstance();
    }

    // }}

    // {{ PersistenceMechanismInstaller
    public PersistenceMechanismInstaller addPersistorAnnotatedOn(final Class<?> javaClass) throws InstantiationException, IllegalAccessException {
        final Persistor annotation = javaClass.getAnnotation(Persistor.class);
        if (annotation != null) {
            return addPersistorRepresentedBy(annotation);
        } else {
            return new InMemoryPersistenceMechanismInstallerWithinJunit();
        }

    }

    private PersistenceMechanismInstaller addPersistorRepresentedBy(final Persistor annotation) throws InstantiationException, IllegalAccessException {
        final Class<?> fixtureClass = annotation.value();
        return (PersistenceMechanismInstaller) fixtureClass.newInstance();
    }
    // }}

    // new InMemoryUserProfileStoreInstaller();

}
TOP

Related Classes of org.apache.isis.viewer.junit.internal.AnnotationInstaller

TOP
Copyright © 2018 www.massapi.com. 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.