/protocols/ss7/map/map-api/src/main/java/org/mobicents/protocols/ss7/map/api/MAPServiceBase.java
http://mobicents.googlecode.com/ · Java · 105 lines · 13 code · 11 blank · 81 comment · 0 complexity · c9f00c4714290c16abb8420a8b6d2775 MD5 · raw file
- /*
- * JBoss, Home of Professional Open Source
- * Copyright 2011, Red Hat, Inc. and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-
- package org.mobicents.protocols.ss7.map.api;
-
- import org.mobicents.protocols.ss7.map.api.dialog.ServingCheckData;
- import org.mobicents.protocols.ss7.map.api.primitives.AddressString;
- import org.mobicents.protocols.ss7.sccp.parameter.SccpAddress;
-
- /**
- *
- * @author sergey vetyutnev
- *
- */
- public interface MAPServiceBase {
-
- public MAPProvider getMAPProvider();
-
- /**
- * Creates a new Dialog. This is equivalent to issuing MAP_OPEN Service
- * Request to MAP Provider.
- *
- * @param applicationCntx
- * This parameter identifies the type of application context
- * being established. If the dialogue is accepted the received
- * application context name shall be echoed. In case of refusal
- * of dialogue this parameter shall indicate the highest version
- * supported.
- *
- * @param destAddress
- * A valid SCCP address identifying the destination peer entity.
- * As an implementation option, this parameter may also, in the
- * indication, be implicitly associated with the service access
- * point at which the primitive is issued.
- *
- * @param destReference
- * This parameter is a reference which refines the identification
- * of the called process. It may be identical to Destination
- * address but its value is to be carried at MAP level.
- *
- * @param origAddress
- * A valid SCCP address identifying the requestor of a MAP
- * dialogue. As an implementation option, this parameter may
- * also, in the request, be implicitly associated with the
- * service access point at which the primitive is issued.
- *
- * @param origReference
- * This parameter is a reference which refines the identification
- * of the calling process. It may be identical to the Originating
- * address but its value is to be carried at MAP level.
- * Processing of the Originating-reference shall be performed
- * according to the supplementary service descriptions and other
- * service descriptions, e.g. operator determined barring.
- * @return
- */
- public MAPDialog createNewDialog(MAPApplicationContext appCntx, SccpAddress origAddress,
- AddressString origReference, SccpAddress destAddress, AddressString destReference) throws MAPException;
-
- /**
- * Returns true if the service can perform dialogs with given
- * ApplicationContext
- */
- public ServingCheckData isServingService(MAPApplicationContext dialogApplicationContext);
-
- // /**
- // * Generate ApplicationContext depending on operationCode for MAP v1
- // *
- // * @param operationCode
- // * @param invoke
- // * @return ApplicationContext or null if operationCode is not supported by a service
- // */
- // public MAPApplicationContext getMAPv1ApplicationContext(int operationCode, Invoke invoke);
- //
- // /**
- // * Process a component
- // */
- // public void processComponent(ComponentType compType, OperationCode oc, Parameter parameter, MAPDialog mapDialog, Long invokeId, Long linkedId)
- // throws MAPParsingComponentException;
-
-
- public boolean isActivated();
-
- public void acivate();
-
- public void deactivate();
- }