01: /* AbstractLdapFixtureOperation.java
02: *
03: * DDSteps - Data Driven JUnit Test Steps
04: * Copyright (C) 2005 Jayway AB
05: * www.ddsteps.org
06: *
07: * This library is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU Lesser General Public
09: * License version 2.1 as published by the Free Software Foundation.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * You should have received a copy of the GNU Lesser General Public
17: * License along with this library; if not, visit
18: * http://www.opensource.org/licenses/lgpl-license.php
19: */
20:
21: package org.ddsteps.fixture.ldap.support;
22:
23: import net.sf.ldaptemplate.LdapOperations;
24:
25: import org.ddsteps.dataset.DataRow;
26:
27: /**
28: * @author Mattias Arthursson
29: *
30: */
31: public abstract class AbstractLdapFixtureOperation implements
32: LdapFixtureOperation {
33:
34: private String dnColumnName = LdapFixtureOperation.DEFAULT_DN_COLUMN_NAME;
35:
36: public void handleRow(LdapOperations ldapOperations, DataRow dataRow) {
37: // TODO Auto-generated method stub
38:
39: }
40:
41: public String getDnColumnName() {
42: return dnColumnName;
43: }
44:
45: public void setDnColumnName(String dnColumnName) {
46: this.dnColumnName = dnColumnName;
47: }
48:
49: }
|