1 22 package org.jboss.deployers.spi; 23 24 import java.io.Serializable ; 25 26 32 public class MissingDependency implements Serializable 33 { 34 35 private static final long serialVersionUID = -1159684023853245283L; 36 37 38 private String name; 39 40 41 private String dependency; 42 43 44 private String requiredState; 45 46 47 private String actualState; 48 49 52 public MissingDependency() 53 { 54 } 55 56 64 public MissingDependency(String name, String dependency, String requiredState, String actualState) 65 { 66 this.name = name; 67 this.dependency = dependency; 68 this.requiredState = requiredState; 69 this.actualState = actualState; 70 } 71 72 77 public String getActualState() 78 { 79 return actualState; 80 } 81 82 87 public String getDependency() 88 { 89 return dependency; 90 } 91 92 97 public String getName() 98 { 99 return name; 100 } 101 102 107 public String getRequiredState() 108 { 109 return requiredState; 110 } 111 } 112 | Popular Tags |