Package org.apache.archiva.webapp.ui.services.model

Examples of org.apache.archiva.webapp.ui.services.model.ApplicationRuntimeInfo


        RuntimeInfoService service =
            JAXRSClientFactory.create( getBaseUrl() + "/" + getRestServicesPath() + "/archivaUiServices/",
                                       RuntimeInfoService.class,
                                       Collections.singletonList( new JacksonJaxbJsonProvider() ) );

        ApplicationRuntimeInfo applicationRuntimeInfo = service.getApplicationRuntimeInfo( "en" );

        assertEquals( System.getProperty( "expectedVersion" ), applicationRuntimeInfo.getVersion() );
        assertFalse( applicationRuntimeInfo.isJavascriptLog() );
        assertTrue( applicationRuntimeInfo.isLogMissingI18n() );

    }
View Full Code Here


        this.archivaRuntimeInfo = archivaRuntimeInfo;
    }

    public ApplicationRuntimeInfo getApplicationRuntimeInfo( String locale )
    {
        ApplicationRuntimeInfo applicationRuntimeInfo = new ApplicationRuntimeInfo();
        applicationRuntimeInfo.setBuildNumber( this.archivaRuntimeInfo.getBuildNumber() );
        applicationRuntimeInfo.setTimestamp( this.archivaRuntimeInfo.getTimestamp() );
        applicationRuntimeInfo.setVersion( this.archivaRuntimeInfo.getVersion() );
        applicationRuntimeInfo.setBaseUrl( getBaseUrl( httpServletRequest ) );

        SimpleDateFormat sfd = new SimpleDateFormat( "yyyy-MM-dd'T'HH:mm:ssz",
                                                     new Locale( StringUtils.isEmpty( locale ) ? "en" : locale ) );
        applicationRuntimeInfo.setTimestampStr( sfd.format( new Date( archivaRuntimeInfo.getTimestamp() ) ) );

        return applicationRuntimeInfo;
    }
View Full Code Here

TOP

Related Classes of org.apache.archiva.webapp.ui.services.model.ApplicationRuntimeInfo

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.