Package org.marian.core

Examples of org.marian.core.ShareType


    }   

    protected void sendRequestedShare() throws Exception
    {
        // If the type is file, sends the share
        ShareType type = this.co.getSharesXML().getType(this.getShare());
        String share_location = this.co.getSharesXML().getLocation(this.getShare());       
        if (type == ShareType.File)
        {
            ShareSendMessage.mount(this.getMessage().getAnswer(), (String) share_location, this.getShare());
            this.getMessage().setAttatchment(share_location);
View Full Code Here

TOP

Related Classes of org.marian.core.ShareType

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.