Skip to content

Instantly share code, notes, and snippets.

@michaelrice
Created May 24, 2015 21:24
Show Gist options
  • Save michaelrice/e8085f5e5f8826cdbbc1 to your computer and use it in GitHub Desktop.
Save michaelrice/e8085f5e5f8826cdbbc1 to your computer and use it in GitHub Desktop.
package com.vmware.vim25;
import lombok.Getter;
import lombok.Setter;
import java.util.Calendar;
/**
* Created by Michael Rice on Sun May 24 16:15:35 CDT 2015
*
* Copyright 2015 Michael Rice
*
* 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.
* @since 6.0
*/
public class AlarmState extends DynamicData {
@Getter @Setter public String key;
@Getter @Setter public ManagedObjectReference entity;
@Getter @Setter public ManagedObjectReference alarm;
@Getter @Setter public ManagedEntityStatus overallStatus;
@Getter @Setter public Calendar time;
@Getter @Setter public Boolean acknowledged;
@Getter @Setter public String acknowledgedByUser;
@Getter @Setter public Calendar acknowledgedTime;
@Getter @Setter public Integer eventKey;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment