Package org.guvnor.structure.server.config

Examples of org.guvnor.structure.server.config.SecureConfigItem


    }

    @Override
    public SecureConfigItem newSecuredConfigItem( final String name,
                                                  final String valueType ) {
        final SecureConfigItem stringConfigItem = new SecureConfigItem();
        if ( name.startsWith( "crypt:" ) ) {
            stringConfigItem.setName( name.substring( "crypt:".length() ) );
        } else {
            stringConfigItem.setName( name );
        }
        stringConfigItem.setValue( secureService.encrypt( valueType ) );
        return stringConfigItem;
    }
View Full Code Here

TOP

Related Classes of org.guvnor.structure.server.config.SecureConfigItem

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.