001 /* 002 * * 003 * * Copyright (c) 2000-present Liferay, Inc. All rights reserved. 004 * * 005 * * This library is free software; you can redistribute it and/or modify it under 006 * * the terms of the GNU Lesser General Public License as published by the Free 007 * * Software Foundation; either version 2.1 of the License, or (at your option) 008 * * any later version. 009 * * 010 * * This library is distributed in the hope that it will be useful, but WITHOUT 011 * * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 012 * * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 013 * * details. 014 * 015 */ 016 017 package com.liferay.portal.service.persistence; 018 019 /** 020 * @author Cristina Gonz??lez 021 */ 022 public interface CompanyProviderFactory extends CompanyProvider { 023 024 public CompanyProvider getCompanyProvider(); 025 026 public void setCompanyProvider(CompanyProvider companyProvider); 027 028 }