📄 locationinfo.java
字号:
package com.ibm.maf.rmi;/* * @(#)LocationInfo.java * * IBM Confidential-Restricted * * OCO Source Materials * * 03L7246 (c) Copyright IBM Corp. 1996, 1998 * * The source code for this program is not published or otherwise * divested of its trade secrets, irrespective of what has been * deposited with the U.S. Copyright Office. */import com.ibm.maf.NameInvalid;import com.ibm.maf.*;import java.util.*;import java.rmi.RemoteException;import java.rmi.*;import java.rmi.server.*;import java.rmi.registry.*;public class LocationInfo implements java.io.Serializable { private String _location; private Object _info; public LocationInfo(String location, Object info) { _location = location; _info = info; } public AgentProfile getAgentProfile() { return (AgentProfile)_info; } public AgentSystemInfo getAgentSystemInfo() { return (AgentSystemInfo)_info; } public Object getInfo() { return _info; } public String getLocation() { return _location; } public boolean matchAgentProfile(AgentProfile p) { if (p == null) { return true; } AgentProfile my = getAgentProfile(); if ((p.language_id != 0) && (p.language_id != my.language_id)) { return false; } if ((p.agent_system_type != 0) && (p.agent_system_type != my.agent_system_type)) { return false; } if ((p.agent_system_description != null) &&!(my.agent_system_description .equals(p.agent_system_description))) { return false; } if ((p.major_version != 0) && (p.major_version != my.major_version)) { return false; } if ((p.minor_version != 0) && (p.minor_version != my.minor_version)) { return false; } if ((p.serialization != 0) && (p.serialization != my.serialization)) { return false; } if (p.properties != null) { // Not implemented yet. } return true; } public boolean matchAgentSystemInfo(AgentSystemInfo p) { if (p == null) { return true; } AgentSystemInfo my = getAgentSystemInfo(); if ((p.agent_system_name != null) &&!(p.agent_system_name.equals(my.agent_system_name))) { return false; } if ((p.agent_system_type != 0) && (p.agent_system_type != my.agent_system_type)) { return false; } if (p.language_maps != null) { // Not implemented yet } if ((p.agent_system_description != null) &&!(p.agent_system_description .equals(my.agent_system_description))) { return false; } if ((p.major_version != 0) && (p.major_version != my.major_version)) { return false; } if ((p.minor_version != 0) && (p.minor_version != my.minor_version)) { return false; } if (p.properties != null) { // Not implemented yet. } return true; } public String toString() { return _location; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -