/** * * Copyright 2004, 2005 The Apache Software Foundation or its licensors, as applicable. * * 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 org.apache.geronimo.console.databasemanager; import javax.management.ObjectName; public class DataSourceInfo implements Comparable { private ObjectName objectName; private String name; private Integer state; private boolean working; private String message; public ObjectName getObjectName() { return objectName; } public void setObjectName(ObjectName objectName) { this.objectName = objectName; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getState() { return state; } public void setState(Integer state) { this.state = state; } public int compareTo(Object o) { return name.compareToIgnoreCase(((DataSourceInfo) o).name); } public boolean isWorking() { return working; } public void setWorking(boolean working) { this.working = working; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } }