com.greenpepper.confluence.GreenPepperServerConfiguration Maven / Gradle / Ivy
/*
* Copyright (c) 2008 Pyxis Technologies inc.
*
* This 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.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA,
* or see the FSF site: http://www.fsf.org.
*/
package com.greenpepper.confluence;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.Serializable;
import java.util.Properties;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.MappingJsonFactory;
import com.greenpepper.server.configuration.DefaultServerProperties;
/**
* GreenPepperServerConfiguration class.
*
* @author oaouattara
* @version $Id: $Id
*/
public class GreenPepperServerConfiguration implements Serializable {
private static final MappingJsonFactory jsonF = new MappingJsonFactory();
private static final long serialVersionUID = 1L;
private boolean isSetupComplete;
private Properties properties = new DefaultServerProperties();
/**
* isSetupComplete.
*
* @return a boolean.
*/
public boolean isSetupComplete()
{
return isSetupComplete;
}
/**
* setSetupComplete.
*
* @param setupComplete a boolean.
*/
public void setSetupComplete(boolean setupComplete)
{
isSetupComplete = setupComplete;
}
/**
* Getter for the field properties
.
*
* @return a {@link java.util.Properties} object.
*/
public Properties getProperties()
{
return properties;
}
/**
* Setter for the field properties
.
*
* @param properties a {@link java.util.Properties} object.
*/
public void setProperties(Properties properties)
{
this.properties = properties;
}
/**
* We use this method to store the Configuration as JSON
*
* @return a {@link java.lang.String} object.
*/
public String toString()
{
try {
ByteArrayOutputStream out = new ByteArrayOutputStream();
JsonGenerator createGenerator = jsonF.createGenerator(out);
createGenerator.writeObject(this);
createGenerator.flush();
createGenerator.close();
String output = new String(out.toByteArray());
return output;
} catch (IOException e) {
throw new RuntimeException("Unable to convert this instance to a JSON using Jackson, fallbacking to manual", e);
}
}
/**
* fromString.
*
* @param input a {@link java.lang.String} object.
* @return a {@link com.greenpepper.confluence.GreenPepperServerConfiguration} object.
* @throws com.fasterxml.jackson.core.JsonParseException if any.
* @throws java.io.IOException if any.
*/
public static GreenPepperServerConfiguration fromString(String input) throws JsonParseException, IOException {
JsonParser parser = jsonF.createParser(input);
TypeReference ref = new TypeReference() { };
return parser.readValueAs(ref);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy