Tabnine Logo
ComponentID
Code IndexAdd Tabnine to your IDE (free)

How to use
ComponentID
in
javax.slee

Best Java code snippets using javax.slee.ComponentID (Showing top 17 results out of 315)

origin: org.mobicents.servers.jainslee.tools/restcomm-slee-tools-management-console-server

public void put(ComponentID value) {
 map.put(value.toString(), value);
}
origin: org.mobicents.servers.jainslee.core/components

@Override
public int hashCode() {
  return getComponentID().hashCode();
}
origin: org.mobicents.servers.jainslee.core/components

@Override
public boolean equals(Object obj) {
  if (obj != null && obj.getClass() == this.getClass()) {
    return ((AbstractSleeComponent) obj).getComponentID().equals(
        this.getComponentID());
  } else {
    return false;
  }
}
origin: org.mobicents.servers.jainslee.core/common

public void checkComponentID(ComponentID componentId) throws UnrecognizedComponentException {
  if (this.traceLevelTable.get(componentId) == null)
    throw new UnrecognizedComponentException(componentId.toString());
}
origin: org.mobicents.servers.jainslee.core/profiles

pumd.setExcludeUnlistedClasses(false);
pumd.setPersistenceUnitName("JSLEEProfiles" + profileComponent.getComponentID().hashCode());
origin: org.mobicents.servers.jainslee.core/components

if (!otherComponent.getComponentID().equals(
    component.getComponentID())) {
  if (otherComponent.getDependenciesSet().contains(
if (!otherComponent.getComponentID().equals(
    component.getComponentID())) {
  if (otherComponent.getDependenciesSet().contains(
if (!otherComponent.getComponentID().equals(
    component.getComponentID())) {
  if (otherComponent.getDependenciesSet().contains(
if (!otherComponent.getComponentID().equals(
    component.getComponentID())) {
  if (otherComponent.getDependenciesSet().contains(
if (!otherComponent.getComponentID().equals(
    component.getComponentID())) {
  if (otherComponent.getDependenciesSet().contains(
if (!otherComponent.getComponentID().equals(
    component.getComponentID())) {
  if (otherComponent.getDependenciesSet().contains(
if (!otherComponent.getComponentID().equals(
    component.getComponentID())) {
  if (otherComponent.getDependenciesSet().contains(
origin: org.mobicents.servers.jainslee.core/components

@Override
public String toString() {
  return getComponentID().toString();
}
origin: org.mobicents.servers.jainslee.core/profiles

String tableName = "SLEE_PE_"+profileComponent.getProfileCmpInterfaceClass().getSimpleName() + "_" + Math.abs((long)profileComponent.getComponentID().hashCode());
addTableAnnotation(tableName, uniqueConstraints, concreteProfileEntityClass);
origin: org.mobicents.servers.jainslee.core/jmx-property-editors

public String getAsText( ) {
  ComponentID[] componentIds = (ComponentID[]) this.getValue();
  if ( componentIds == null) return "null";
  else {
    StringBuffer sb = new StringBuffer();
    for ( int i = 0; i < componentIds.length; i++) {
      sb.append(componentIds[i].toString());
      if (i < componentIds.length-1) {
        sb.append(CID_SEPARATOR);
      }
    }
    return sb.toString();
  }
}
 
origin: org.mobicents.servers.jainslee.core/profiles

addTableAnnotationToPEAAV("SLEE_PEAAV_"+profileComponent.getProfileCmpInterfaceClass().getSimpleName() + "_" + Math.abs((long)profileComponent.getComponentID().hashCode()) + profileAttributeName,unique,concreteArrayValueClass);  
origin: org.mobicents.servers.jainslee.tools/restcomm-slee-tools-management-console-server

static private String toString(ComponentID componentID) {
 if (componentID == null)
  return null;
 ManagementConsole.getInstance().getComponentIDMap().put(componentID);
 return componentID.toString();
}
origin: org.mobicents.servers.jainslee.tools/restcomm-slee-tools-management-console-server

static public String[] toStringArray(ComponentID[] componentIDs) {
 if (componentIDs == null)
  return null;
 String[] stringArray = new String[componentIDs.length];
 for (int i = 0; i < componentIDs.length; i++)
  stringArray[i] = componentIDs[i].toString();
 ManagementConsole.getInstance().getComponentIDMap().put(componentIDs);
 return stringArray;
}
origin: org.mobicents.servers.jainslee.core/common

newDeployedComponents.add(componentID.toString());
newDeployedComponents.add(componentID.toString());
newDeployedComponents.add(componentID.toString());
newDeployedComponents.add(componentID.toString());
newDeployedComponents.add(componentID.toString());
newDeployedComponents.add(componentID.toString());
newDeployedComponents.add(componentID.toString());
origin: org.mobicents.servers.jainslee.tools/restcomm-slee-tools-management-console-server

public ComponentInfo[] searchComponents(ComponentSearchParams params) throws ManagementConsoleException {
 ComponentDescriptor[] allComponentDescriptors = deploymentMBeanUtils.getComponentDescriptors();
 ArrayList<ComponentDescriptor> resultComponentDescriptorArrayList = new ArrayList<ComponentDescriptor>();
 ComponentDescriptor[] resultComponentDescriptors;
 ComponentInfo[] resultComponentInfos;
 for (int i = 0; i < allComponentDescriptors.length; i++) {
  ComponentDescriptor componentDescriptor = allComponentDescriptors[i];
  if (params.matches(componentDescriptor.getName(), componentDescriptor.getID().toString(), componentDescriptor.getVendor(),
    componentDescriptor.getVersion()))
   resultComponentDescriptorArrayList.add(componentDescriptor);
 }
 if (resultComponentDescriptorArrayList.size() == 0)
  return null;
 resultComponentDescriptors = new ComponentDescriptor[resultComponentDescriptorArrayList.size()];
 resultComponentDescriptors = resultComponentDescriptorArrayList.toArray(resultComponentDescriptors);
 resultComponentInfos = ComponentInfoUtils.toComponentInfos(resultComponentDescriptors);
 return resultComponentInfos;
}
origin: org.mobicents.servers.jainslee.tools/restcomm-slee-tools-management-console-server

public String getComponentName(String id) throws ManagementConsoleException {
 ComponentID componentID = managementConsole.getComponentIDMap().get(id);
 ComponentDescriptor componentDescriptor = deploymentMBeanUtils.getDescriptor(componentID);
 return componentDescriptor.getID().toString();
}
origin: org.mobicents.servers.jainslee.tools/restcomm-slee-tools-management-console-server

 static public ServiceInfoHeader toServiceInfoHeader(ServiceDescriptor serviceDescriptor, ServiceState serviceState) throws ManagementConsoleException {

  ManagementConsole.getInstance().getComponentIDMap().put(serviceDescriptor.getID());
  return new ServiceInfoHeader(serviceDescriptor.getID().toString(), serviceDescriptor.getName(), ServiceStateInfoUtils.toServiceStateInfo(serviceState));
 }
}
origin: org.mobicents.servers.jainslee.core/components

  throw new UnrecognizedComponentException(componentID.toString());
} else {
  Set<SleeComponent> referringComponents = getReferringComponents(component);
javax.sleeComponentID

Most used methods

  • toString
  • hashCode
  • equals

Popular in Java

  • Updating database using SQL prepared statement
  • onCreateOptionsMenu (Activity)
  • runOnUiThread (Activity)
  • getExternalFilesDir (Context)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • JList (javax.swing)
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now