com.openshift.internal.client.response.GearDTO Maven / Gradle / Ivy
/******************************************************************************* 
 * Copyright (c) 2012 Red Hat, Inc. 
 * Distributed under license by Red Hat, Inc. All rights reserved. 
 * This program is made available under the terms of the 
 * Eclipse Public License v1.0 which accompanies this distribution, 
 * and is available at http://www.eclipse.org/legal/epl-v10.html 
 * 
 * Contributors: 
 * Red Hat, Inc. - initial API and implementation 
 ******************************************************************************/
package com.openshift.internal.client.response;
import java.util.HashMap;
import com.openshift.client.Messages;
/**
 * The Class ApplicationDTO.
 *
 * @author Xavier Coulon
 */
public class GearDTO extends BaseResourceDTO {
	/**
	 * Instantiates a new gearGroup dto.
	 *
	 */
	
	String uuid;
	String state;
	
	public GearDTO(String uuid, String state, Messages messages) {
		super(new HashMap(), messages);
		this.uuid = uuid;
		this.state = state;
	}
	
	@Override
	public String toString() {
		return "GearDTO";
	}
	
	public String getUuid() {
		return uuid;
	}
	
	public String getState() {
		return state;
	}
}
     © 2015 - 2025 Weber Informatics LLC | Privacy Policy