org.pentaho.pat.server.services.impl.AbstractService.java Source code

Java tutorial

Introduction

Here is the source code for org.pentaho.pat.server.services.impl.AbstractService.java

Source

/*
 * Copyright (C) 2009 Luc Boudreau
 *
 * This program is free software; you can redistribute it and/or modify it 
 * under the terms of the GNU General Public License as published by the Free 
 * Software Foundation; either version 2 of the License, or (at your option) 
 * any later version.
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * 
 * See the GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License along 
 * with this program; if not, write to the Free Software Foundation, Inc., 
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
 *
 */
package org.pentaho.pat.server.services.impl;

import org.pentaho.pat.server.data.UserManager;
import org.springframework.beans.factory.InitializingBean;

public abstract class AbstractService implements InitializingBean {

    protected UserManager userManager;

    public UserManager getUserManager() {
        return userManager;
    }

    public void setUserManager(final UserManager userManager) {
        this.userManager = userManager;
    }

}