ucSetAreaProject

Purpose

Applies To

Administration Methods

Signature

    public void ucSetAreaProject( 
                Connection dbconn, 
                SesameSession session, 
                String areaId, 
                String projectId) 
                     throws Exception { }

Notes

Example

public void ucSetAreaProject(
                  Connection con, 
                  SesameSession session, 
                  String areaId, 
                  String projectId) throws Exception {
        int newAreaIdInt = Integer.parseInt(areaId);
        int newProjectIdInt = Integer.parseInt(projectId);
        setAreaProjectRole(con, session, newAreaIdInt, newProjectIdInt);
    }