Examples of DolphinPrincipal


Examples of open.dolphin.project.DolphinPrincipal

            // 施設IDとユーザIDを保存する
            stub.setFacilityId(getFacilityId());
            stub.setUserId(getUserId());
            // Principleを保存する
            DolphinPrincipal principal = new DolphinPrincipal();
            principal.setFacilityId(getFacilityId());
            principal.setUserId(getUserId());
            stub.setDolphinPrincipal(principal);
            // メンバータイプを保存する
            stub.setUserType(getUserType());
            // IPAddressを保存する
            stub.setHostAddress(getIpAddress());
View Full Code Here

Examples of open.dolphin.project.DolphinPrincipal

    public void start() {
       
        //
        // ダイアログモデルを生成し値を初期化する
        //
        principal = new DolphinPrincipal();
        if (Project.isValid()) {
            principal.setFacilityId(Project.getFacilityId());
            principal.setUserId(Project.getUserId());
        }
       
View Full Code Here
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.