EMMA Coverage Report (generated Tue Nov 24 15:49:41 EST 2009)
[all classes][atg.service.idgen]

COVERAGE SUMMARY FOR SOURCE FILE [InitializingSQLIdGenerator.java]

nameclass, %method, %block, %line, %
InitializingSQLIdGenerator.java100% (1/1)100% (3/3)100% (25/25)100% (9/9)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class InitializingSQLIdGenerator100% (1/1)100% (3/3)100% (25/25)100% (9/9)
InitializingSQLIdGenerator (): void 100% (1/1)100% (3/3)100% (1/1)
doStartService (): void 100% (1/1)100% (20/20)100% (7/7)
getCreateStatement (): String 100% (1/1)100% (2/2)100% (1/1)

1/**
2 * Copyright 2009 ATG DUST Project Licensed under the Apache License, Version
3 * 2.0 (the "License"); you may not use this file except in compliance with the
4 * License. You may obtain a copy of the License at
5 * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
6 * or agreed to in writing, software distributed under the License is
7 * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
8 * KIND, either express or implied. See the License for the specific language
9 * governing permissions and limitations under the License.
10 */
11 
12package atg.service.idgen;
13 
14import java.sql.ResultSet;
15import java.sql.SQLException;
16import java.sql.Statement;
17 
18import atg.nucleus.ServiceException;
19 
20/**
21 * This IDGenerator is intended to be used by unit tests. It will manage it's
22 * own database schema rather than assuming the tables already exist. Otherwise
23 * it's the same functionality as the SQLIdGenerator.
24 * 
25 * @author adamb
26 * @version $Id: //test/UnitTests/base/main/src/Java/atg/service/idgen/
27 *          InitializingSQLIdGenerator.java#1 $
28 */
29public class InitializingSQLIdGenerator extends SQLIdGenerator implements
30    InitializingIdGenerator {
31 
32  IdGeneratorInitializer     mInitializer;
33 
34  /**
35   * The SQL statement required to create the table used by this component.
36   */
37  public static final String CREATE_STATEMENT = " create table das_id_generator ("
38                                                  + "id_space_name   varchar(60) not null,"
39                                                  + "seed    numeric(19,0)   not null,"
40                                                  + " batch_size      integer not null,"
41                                                  + " prefix  varchar(10),"
42                                                  + " suffix  varchar(10),"
43                                                  + "primary key (id_space_name)) ";
44 
45  /**
46   * Ensures that the required tables for this id generator exist.
47   */
48  @Override
49  public void doStartService() throws ServiceException {
50    if (mInitializer == null)
51      mInitializer = new IdGeneratorInitializer(this);
52    try {
53      mInitializer.initialize();
54    } catch (SQLException e) {
55      throw new ServiceException(e);
56    }
57  }
58 
59  /**
60   * Returns the create statement appropriate for the current database
61   */
62  public String getCreateStatement() {
63    // TODO Add DBCheck and return DB2 syntax
64    return CREATE_STATEMENT; 
65  }
66}

[all classes][atg.service.idgen]
EMMA 2.0.5312 (C) Vladimir Roubtsov