1 18 package org.osgi.service.wireadmin; 19 20 26 public class BasicEnvelope implements Envelope { 27 Object value; 28 Object identification; 29 String scope; 30 31 40 public BasicEnvelope(Object value, Object identification, String scope) { 41 this.value = value; 42 this.identification = identification; 43 this.scope = scope; 44 } 45 46 49 public Object getValue() { 50 return value; 51 } 52 53 56 public Object getIdentification() { 57 return identification; 58 } 59 60 63 public String getScope() { 64 return scope; 65 } 66 } 67 | Popular Tags |