/* * Copyright 2010-2012, CloudBees Inc. * * Licensed 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 com.cloudbees.api; import com.thoughtworks.xstream.annotations.XStreamAlias; import java.text.ParseException; import java.util.Date; import java.util.Map; @XStreamAlias("DatabaseInfo") public class DatabaseInfo { private String name; private String owner; private String username; private String password; private String created; private String status; private String master; private String[] slaves; private int port; private Map<String, String> settings; public DatabaseInfo(String name, String owner, String username, String password, Date created, String status, String master, String[] slaves, int port) { super(); this.name = name; this.owner = owner; this.username = username; this.password = password; this.created = DateHelper.toW3CDateString(created); this.status = status; this.master = master; this.slaves = slaves; this.port = port; } public String getName() { return name; } public String getOwner() { return owner; } public String getUsername() { return username; } public String getPassword() { return password; } public Date getCreated() { if (created == null) { return null; } try { return DateHelper.parseW3CDate(created); } catch (ParseException e) { return null; } } public String getStatus() { return status; } public String getMaster() { return master; } public String[] getSlaves() { return slaves; } public int getPort() { return port; } public Map<String, String> getSettings() { return settings; } public void setSettings(Map<String, String> settings) { this.settings = settings; } }