Subversion Repositories DevTools

Rev

Rev 7047 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7047 Rev 7048
Line 28... Line 28...
28
 
28
 
29
    
29
    
30
    public ReleaseManagerUtf(final String connectionString, final String username, final String password)
30
    public ReleaseManagerUtf(final String connectionString, final String username, final String password)
31
    {
31
    {
32
        super(connectionString, username, password);
32
        super(connectionString, username, password);
33
        ReleaseManager.mUseDatabase = false;
33
        mUseDatabase = false;
34
    }
34
    }
35
 
35
 
36
    public ReleaseManagerUtf()
36
    public ReleaseManagerUtf()
37
    {
37
    {
38
        super();
38
        super();
39
        ReleaseManagerUtf.mUseDatabase = false;
39
        mUseDatabase = false;
40
    }
40
    }
41
    
41
    
42
    //
42
    //
43
    //  Used by Slave
43
    //  Used by Slave
44
    //      Set a single run level entry
44
    //      Set a single run level entry
Line 142... Line 142...
142
    {
142
    {
143
        // Nothing to do here
143
        // Nothing to do here
144
    }
144
    }
145
    
145
    
146
    @Override
146
    @Override
-
 
147
    public void queryWips(RippleEngine rippleEngine, ArrayList<Package> packageCollection, int baseline) throws SQLException, Exception
-
 
148
    {
-
 
149
    }
-
 
150
    
-
 
151
    @Override
-
 
152
    public void queryTest(RippleEngine rippleEngine, ArrayList<Package> packageCollection, int baseline) throws SQLException, Exception
-
 
153
    {
-
 
154
    }
-
 
155
    
-
 
156
    @Override
-
 
157
    public void queryRipples(RippleEngine rippleEngine, ArrayList<Package> packageCollection, int baseline) throws SQLException, Exception
-
 
158
    {
-
 
159
    }
-
 
160
    
-
 
161
    @Override
147
    public int queryRtagIdForSbom(int sbomId) throws SQLException
162
    public int queryRtagIdForSbom(int sbomId) throws SQLException
148
    {
163
    {
149
        return 123456;
164
        return 123456;
150
    }
165
    }
151
    
166