You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by oa...@apache.org on 2001/12/19 17:33:08 UTC

cvs commit: jakarta-commons-sandbox/services/src/java/org/apache/commons/services EventRegistration.java

oalexeev    01/12/19 08:33:08

  Added:       services/src/java/org/apache/commons/services
                        EventRegistration.java
  Log:
  Add external config class for Event classes
  
  Revision  Changes    Path
  1.1                  jakarta-commons-sandbox/services/src/java/org/apache/commons/services/EventRegistration.java
  
  Index: EventRegistration.java
  ===================================================================
  /*
   * Copyright (C) The Apache Software Foundation. All rights reserved.
   *
   * This software is published under the terms of the Apache Software License
   * version 1.1, a copy of which has been included with this distribution in
   * the LICENSE file.
   */
  
  package org.apache.commons.services;
  
  /** Event registration.
   * 
   *  @version $Id: EventRegistration.java,v 1.1 2001/12/19 16:33:08 oalexeev Exp $
   *  @author Oleg V Alexeev
   */
  public class EventRegistration {
  
          protected String type = null;
  
          public String getType() {
                  return type;
          }
  
          public void setType( String type ) {
                  this.type = type;
          }
  
          protected String name = null;
  
          public String getName() {
                  return name;
          }
  
          public void setName( String name ) {
                  this.name = name;
          }
  
  }
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>