View Javadoc

1   /*
2   Copyright 2011-2014 AGH-UST, http://www.agh.edu.pl
3   Faculty of Computer Science, Electronics and Telecommunications
4   Department of Computer Science 
5   
6   See the NOTICE file distributed with this work for additional
7   information regarding copyright ownership
8   
9   Licensed under the Apache License, Version 2.0 (the "License");
10  you may not use this file except in compliance with the License.
11  You may obtain a copy of the License at
12  
13    http://www.apache.org/licenses/LICENSE-2.0
14  
15  Unless required by applicable law or agreed to in writing, software
16  distributed under the License is distributed on an "AS IS" BASIS,
17  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  See the License for the specific language governing permissions and
19  limitations under the License.
20  */
21  package org.universAAL.ri.gateway.eimanager.impl;
22  
23  import org.universAAL.middleware.container.ModuleContext;
24  
25  public abstract class ProxyBusMember {
26      
27      protected ModuleContext mc;
28      protected String targetId;
29      protected String remoteBusMemberId;
30      private final AbstractProxyManager manager;
31      
32      public ProxyBusMember(AbstractProxyManager manager, String targetId, String remoteBusMemberId, ModuleContext mc){
33  	this.mc = mc;
34  	this.targetId = targetId;
35  	this.manager = manager;
36  	this.remoteBusMemberId = remoteBusMemberId;
37      }
38      
39      public String getRemoteProxyBusMemberId(){
40  	return targetId;
41      }
42      
43      public abstract void removeProxy();
44  
45      public AbstractProxyManager getManager() {
46  	return manager;
47      }
48      
49      public abstract String getId();
50  
51  	public String getRemoteBusMemberId() {
52  		return remoteBusMemberId;
53  	}
54  }