1 16 package org.apache.juddi.datatype.response; 17 18 import org.apache.juddi.datatype.RegistryObject; 19 20 28 public class CompletionStatus implements RegistryObject 29 { 30 public static final String COMPLETE = "status:complete"; 31 public static final String TOKEY_INCOMPLETE= "status:toKey_incomplete"; 32 public static final String FROMKEY_INCOMPLETE = "status:fromKey_incomplete"; 33 34 String statusValue; 35 36 39 public CompletionStatus() 40 { 41 } 42 43 46 public CompletionStatus(String statusValue) 47 { 48 this.statusValue = statusValue; 49 } 50 51 54 public void setValue(String value) 55 { 56 this.statusValue = value; 57 } 58 59 62 public String getValue() 63 { 64 return this.statusValue; 65 } 66 } 67 | Popular Tags |