blob: d279bf9b1b0a6922c2194afbd5a6238f2210b9fa [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. 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.
*/
package org.netbeans.modules.glassfish.common;
import org.netbeans.modules.glassfish.spi.RegisterDatabase;
import java.io.File;
import org.netbeans.modules.derby.spi.support.DerbySupport;
import org.netbeans.modules.glassfish.spi.RegisteredDerbyServer;
import org.openide.util.lookup.ServiceProvider;
/**
*
* @author vkraemer
*/
@ServiceProvider(service=RegisteredDerbyServer.class)
public class RegisteredDerbyServerImpl implements RegisteredDerbyServer {
@Override
public void start() {
DerbySupport.ensureStarted();
}
@Override
public void initialize(String candidateLocation) {
String location = DerbySupport.getLocation();
if (null != location && location.trim().length() > 0) {
return;
}
DerbySupport.setLocation(candidateLocation);
location = DerbySupport.getSystemHome();
if (null != location && location.trim().length() > 0) {
return;
} else {
File dbdir = new File(DerbySupport.getDefaultSystemHome());
if (dbdir.exists() == false) {
dbdir.mkdirs();
}
}
DerbySupport.setSystemHome(DerbySupport.getDefaultSystemHome());
RegisterDatabase.getDefault().configureDatabase();
}
}