1 /** 2 * SimpleMonitorableMBean.java 3 * 4 * @author Created by Omnicore CodeGuide 5 */ 6 7 8 package com.builder.uk.watchme; 9 10 /* 11 * #%L 12 * phynixx-jmx 13 * %% 14 * Copyright (C) 2014 csc 15 * %% 16 * Licensed under the Apache License, Version 2.0 (the "License"); 17 * you may not use this file except in compliance with the License. 18 * You may obtain a copy of the License at 19 * 20 * http://www.apache.org/licenses/LICENSE-2.0 21 * 22 * Unless required by applicable law or agreed to in writing, software 23 * distributed under the License is distributed on an "AS IS" BASIS, 24 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 25 * See the License for the specific language governing permissions and 26 * limitations under the License. 27 * #L% 28 */ 29 30 31 public interface WatchMeBeanMBean { 32 public int getCount(); 33 34 public String getMsg(); 35 36 public void setMsg(String msg); 37 38 public void reset(); 39 } 40