blob: 24b54c22e4914cce8f0d2c3b0cb8e1ff52903f33 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.openejb;
/**
* @version $Rev: 1153797 $ $Date: 2011-08-04 02:09:44 -0700 (Thu, 04 Aug 2011) $
*/
public enum InterfaceType {
EJB_HOME("Home"),
EJB_OBJECT("Remote"),
EJB_LOCAL_HOME("LocalHome"),
EJB_LOCAL("Local"),
BUSINESS_LOCAL("Local"),
LOCALBEAN("LocalBean"),
BUSINESS_LOCAL_HOME("LocalHome"),
BUSINESS_REMOTE("Remote"),
BUSINESS_REMOTE_HOME("Home"),
SERVICE_ENDPOINT("ServiceEndpoint"),
BUSINESS_LOCALBEAN_HOME("LocalBeanHome"),
TIMEOUT("Timeout"),
UNKNOWN("Unknown");
private final String specName;
InterfaceType(String name) {
this.specName = name;
}
public String getSpecName() {
return specName;
}
public boolean isHome() {
switch(this){
case EJB_HOME: return true;
case EJB_LOCAL_HOME: return true;
case BUSINESS_LOCAL_HOME: return true;
case BUSINESS_LOCALBEAN_HOME: return true;
case BUSINESS_REMOTE_HOME: return true;
}
return false;
}
public boolean isComponent() {
switch(this){
case EJB_OBJECT: return true;
case EJB_LOCAL: return true;
}
return false;
}
public boolean isBusiness() {
switch(this){
case BUSINESS_LOCAL: return true;
case BUSINESS_REMOTE: return true;
case LOCALBEAN: return true;
}
return false;
}
public boolean isRemote() {
switch(this){
case EJB_HOME: return true;
case EJB_OBJECT: return true;
case BUSINESS_REMOTE: return true;
case BUSINESS_REMOTE_HOME: return true;
}
return false;
}
public boolean isLocal() {
switch(this){
case EJB_LOCAL_HOME: return true;
case EJB_LOCAL: return true;
case BUSINESS_LOCAL: return true;
case BUSINESS_LOCAL_HOME: return true;
case LOCALBEAN: return true;
}
return false;
}
public boolean isLocalBean() {
switch(this){
case LOCALBEAN: return true;
case BUSINESS_LOCALBEAN_HOME: return true;
}
return false;
}
public InterfaceType getCounterpart() {
switch(this){
case EJB_HOME: return InterfaceType.EJB_OBJECT;
case EJB_LOCAL_HOME: return InterfaceType.EJB_LOCAL;
case BUSINESS_REMOTE_HOME: return InterfaceType.BUSINESS_REMOTE;
case BUSINESS_LOCAL_HOME: return InterfaceType.BUSINESS_LOCAL;
case EJB_OBJECT: return InterfaceType.EJB_HOME;
case EJB_LOCAL: return InterfaceType.EJB_LOCAL_HOME;
case BUSINESS_REMOTE: return InterfaceType.BUSINESS_REMOTE_HOME;
case BUSINESS_LOCAL: return InterfaceType.BUSINESS_LOCAL_HOME;
case BUSINESS_LOCALBEAN_HOME: return InterfaceType.LOCALBEAN;
case LOCALBEAN: return InterfaceType.BUSINESS_LOCALBEAN_HOME;
default: throw new IllegalArgumentException("InterfaceType has no counterpart: " + this);
}
}
}