blob: b76ec5b6f8000410c60b31a9f0138c880a06b552 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. The ASF licenses this file to You
* under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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 License for the specific language governing permissions and
* limitations under the License. For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
package org.apache.roller.weblogger.business.jpa;
import org.apache.roller.planet.business.PlanetManager;
import org.apache.roller.planet.business.PlanetURLStrategy;
import org.apache.roller.planet.business.fetcher.FeedFetcher;
import org.apache.roller.weblogger.WebloggerException;
import org.apache.roller.weblogger.business.*;
import org.apache.roller.weblogger.business.pings.AutoPingManager;
import org.apache.roller.weblogger.business.pings.PingQueueManager;
import org.apache.roller.weblogger.business.pings.PingTargetManager;
import org.apache.roller.weblogger.business.plugins.PluginManager;
import org.apache.roller.weblogger.business.runnable.ThreadManager;
import org.apache.roller.weblogger.business.search.IndexManager;
import org.apache.roller.weblogger.business.themes.ThemeManager;
/**
* A JPA specific implementation of the Weblogger business layer.
*/
@com.google.inject.Singleton
public class JPAWebloggerImpl extends WebloggerImpl {
// a persistence utility class
private final JPAPersistenceStrategy strategy;
/**
* Single constructor.
* @throws org.apache.roller.weblogger.WebloggerException on any error
*/
@com.google.inject.Inject
protected JPAWebloggerImpl(
JPAPersistenceStrategy strategy,
AutoPingManager autoPingManager,
BookmarkManager bookmarkManager,
IndexManager indexManager,
MediaFileManager mediaFileManager,
FileContentManager fileContentManager,
PingQueueManager pingQueueManager,
PingTargetManager pingTargetManager,
PluginManager pluginManager,
PropertiesManager propertiesManager,
ThemeManager themeManager,
ThreadManager threadManager,
UserManager userManager,
WeblogManager weblogManager,
WeblogEntryManager weblogEntryManager,
OAuthManager oauthManager,
FeedFetcher feedFetcher,
PlanetManager planetManager,
PlanetURLStrategy planetUrlStrategy,
URLStrategy urlStrategy) throws WebloggerException {
super(
autoPingManager,
bookmarkManager,
indexManager,
mediaFileManager,
fileContentManager,
pingQueueManager,
pingTargetManager,
pluginManager,
propertiesManager,
themeManager,
threadManager,
userManager,
weblogManager,
weblogEntryManager,
oauthManager,
feedFetcher,
planetManager,
planetUrlStrategy,
urlStrategy);
this.strategy = strategy;
}
public void flush() throws WebloggerException {
this.strategy.flush();
}
@Override
public void release() {
super.release();
// tell JPA to close down
this.strategy.release();
}
@Override
public void shutdown() {
// do our own shutdown first
this.release();
// then let parent do its thing
super.shutdown();
this.strategy.shutdown();
}
}